aboutsummaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
blob: c454eca4e57cdfcba3b3ed6aea028adbe739436b (plain)
  1. set(PROGRAM_stmd "stmd")
  2. set(PROGRAM_stmd_SOURCES blocks.c
  3. inlines.c
  4. main.c
  5. debug.h
  6. detab.c
  7. bstrlib.c
  8. bstrlib.h
  9. getopt.c
  10. html.c
  11. print.c
  12. scanners.h
  13. scanners.re
  14. stmd.h
  15. utf8.c
  16. utf8.h
  17. uthash.h
  18. )
  19. add_executable(${PROGRAM_stmd}
  20. ${PROGRAM_stmd_SOURCES})
  21. if (MSVC)
  22. set_property(TARGET ${PROGRAM_chronolog}
  23. APPEND PROPERTY LINK_FLAGS /INCREMENTAL:NO)
  24. target_link_libraries(${PROGRAM_chronolog} gdiplus.lib)
  25. endif(MSVC)
  26. install(TARGETS ${PROGRAM_chronolog}
  27. RUNTIME DESTINATION bin
  28. BUNDLE DESTINATION Applications)