15 lines
336 B
CMake
Raw Normal View History

2020-02-01 23:06:01 +01:00
# 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
)