0
0
Fork 0

Simplify main CMakeLists.txt

This commit is contained in:
Pcornat 2024-01-17 21:05:04 +01:00
parent a892885241
commit 38004618a6
Signed by: Pcornat
GPG key ID: E0326CC678A00BDD
2 changed files with 12 additions and 6 deletions

11
pb_1/CMakeLists.txt Normal file
View file

@ -0,0 +1,11 @@
project(pb1 CXX)
add_library(pb_1 STATIC problem_1.cpp problem_1.hpp)
target_compile_definitions(pb_1 PUBLIC $<$<AND:$<CONFIG:Debug>,$<STREQUAL:$<CXX_COMPILER_ID>,GNU>>:_GLIBCXX_DEBUG>)
target_compile_options(pb_1 PUBLIC ${COMPILE_FLAGS})
target_link_options(pb_1 PUBLIC ${LINKER_OPTIONS})
target_link_libraries(pb_1 PUBLIC ${LINKER_FLAGS})