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)