Random-Cpp/NegBin/CMakeLists.txt

8 lines
No EOL
319 B
CMake

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)