Random-Cpp/NegBin/CMakeLists.txt

8 lines
319 B
Text
Raw Normal View History

2020-11-06 22:34:02 +01:00
add_executable(NegBin main.cpp NegBin.cpp NegBin.h)
target_compile_options(NegBin PRIVATE -Wall -Wpedantic -Wextra)
target_link_options(NegBin PRIVATE -static -static-libgcc -static-libstdc++)
add_executable(NegBinBenchmark NegBinBenchmark.cpp NegBin.cpp NegBin.h)
target_compile_options(NegBinBenchmark PRIVATE -O3)