test-econ-model/CMakeLists.txt

11 lines
362 B
CMake
Raw Normal View History

2022-11-30 02:07:09 -08:00
project(test_econ_model)
# set(models "fixed-simple, lending, pop-simple")
# foreach(model models)
# add_executable(bin/${model} ${model}.cpp)
# endforeach()
make_directory(bin)
include_directories(include/)
add_executable(./bin/fixed-simple fixed-simple.cpp)
add_executable(./bin/wealth-flow wealth-flow.cpp)
add_executable(./bin/pop-simple pop-simple.cpp)