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.
15 lines
336 B
15 lines
336 B
# Disable relaxed mode
|
|
set(CMAKE_AUTOMOC_RELAXED_MODE FALSE)
|
|
|
|
# Common test
|
|
set(COMMON_FUNCTION_NAME commonStrict)
|
|
configure_file(
|
|
"${COM_DIR}/common.cpp.in"
|
|
"${CMAKE_CURRENT_BINARY_DIR}/commonStrict.cpp")
|
|
|
|
makeExecutable(libStrict)
|
|
target_sources(libStrict PRIVATE
|
|
"${CMAKE_CURRENT_BINARY_DIR}/commonStrict.cpp"
|
|
strict.cpp
|
|
)
|