123456789101112131415161718 |
- cmake_minimum_required (VERSION 2.8)
- set (SIM_NAME "compnest")
- add_executable("${SIM_NAME}" "${SIM_NAME}.cpp")
- target_link_libraries("${SIM_NAME}" csim)
- INSTALL_SIM("${SIM_NAME}" "bin/${SIM_NAME}")
- set (SIM_NAME "compnest_two_layers")
- add_executable("${SIM_NAME}" "${SIM_NAME}.cpp")
- target_link_libraries("${SIM_NAME}" csim)
- INSTALL_SIM("${SIM_NAME}" "bin/${SIM_NAME}")
- add_executable("test_iaf_psc_exp" "test_iaf_psc_exp.cpp")
- target_link_libraries("test_iaf_psc_exp" csim)
|