CMakeLists.txt 482 B

123456789101112131415161718
  1. cmake_minimum_required (VERSION 2.8)
  2. set (SIM_NAME "compnest")
  3. add_executable("${SIM_NAME}" "${SIM_NAME}.cpp")
  4. target_link_libraries("${SIM_NAME}" csim)
  5. INSTALL_SIM("${SIM_NAME}" "bin/${SIM_NAME}")
  6. set (SIM_NAME "compnest_two_layers")
  7. add_executable("${SIM_NAME}" "${SIM_NAME}.cpp")
  8. target_link_libraries("${SIM_NAME}" csim)
  9. INSTALL_SIM("${SIM_NAME}" "bin/${SIM_NAME}")
  10. add_executable("test_iaf_psc_exp" "test_iaf_psc_exp.cpp")
  11. target_link_libraries("test_iaf_psc_exp" csim)