ack/util/cmisc/CMakeLists.txt

18 lines
372 B
CMake
Raw Normal View History

2019-02-18 16:37:11 +00:00
cmake_minimum_required (VERSION 2.9)
project (cmisc)
add_executable(tabgen tabgen.c)
target_compile_definitions(tabgen PUBLIC NORCSID=1)
add_executable(ed ed.c)
target_compile_definitions(ed PUBLIC NORCSID=1)
install(TARGETS tabgen ed DESTINATION bin)
install(FILES
${CMAKE_CURRENT_SOURCE_DIR}/tabgen.1
${CMAKE_CURRENT_SOURCE_DIR}/ed.1
DESTINATION man OPTIONAL)