8 lines
319 B
Text
8 lines
319 B
Text
|
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)
|