CMakeLists.txt 200 B

12345678
  1. cmake_minimum_required (VERSION 2.8)
  2. set (SIM_NAME "minimal")
  3. add_executable("${SIM_NAME}" "${SIM_NAME}.cpp")
  4. target_link_libraries("${SIM_NAME}" csim)
  5. INSTALL_SIM("${SIM_NAME}" "bin/${SIM_NAME}")