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.
34 lines
633 B
34 lines
633 B
|
|
TRIBITS_SUBPACKAGE(SuplibCpp)
|
|
|
|
SET(SUPLIBCPP_VERSION_MAJOR "3")
|
|
SET(SUPLIBCPP_VERSION_MINOR "08")
|
|
SET(SUPLIBCPP_VERSION_PATCH "0")
|
|
SET(SUPLIBCPP_VERSION "${SUPLIBCPP_VERSION_MAJOR}.${SUPLIBCPP_VERSION_MINOR}")
|
|
SET(SUPLIBCPP_VERSION_FULL "${SUPLIBCPP_VERSION}.${SUPLIBCPP_VERSION_PATCH}")
|
|
|
|
TRIBITS_INCLUDE_DIRECTORIES(
|
|
"${CMAKE_CURRENT_SOURCE_DIR}"
|
|
)
|
|
|
|
SET(SOURCES
|
|
FileInfo.C
|
|
GetLongOpt.C
|
|
SL_tokenize.C
|
|
copyright.C
|
|
format_time.C
|
|
hwm.C
|
|
iqsort.C
|
|
smart_assert.C
|
|
sys_info.C
|
|
time_stamp.C
|
|
timer.C
|
|
)
|
|
|
|
TRIBITS_ADD_LIBRARY(
|
|
suplib_cpp
|
|
NOINSTALLHEADERS
|
|
SOURCES ${SOURCES}
|
|
)
|
|
|
|
TRIBITS_SUBPACKAGE_POSTPROCESS()
|
|
|