You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
402 B
22 lines
402 B
TRIBITS_SUBPACKAGE(Slice)
|
|
|
|
ASSERT_DEFINED(TPL_ENABLE_METIS)
|
|
IF (TPL_ENABLE_METIS)
|
|
ADD_DEFINITIONS(-DUSE_METIS)
|
|
ENDIF()
|
|
|
|
TRIBITS_INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
SET(HEADERS "")
|
|
APPEND_GLOB(SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/*.C)
|
|
|
|
TRIBITS_ADD_EXECUTABLE(
|
|
slice
|
|
NOEXEPREFIX
|
|
NOEXESUFFIX
|
|
SOURCES ${SOURCES}
|
|
COMM serial mpi
|
|
INSTALLABLE
|
|
)
|
|
|
|
TRIBITS_SUBPACKAGE_POSTPROCESS()
|
|
|