1
0
mirror of https://github.com/woo-j/zint.git synced 2025-01-09 21:17:42 +03:00
zint/frontend/CMakeLists.txt

32 lines
868 B
CMake
Raw Normal View History

# Copyright (C) 2008 by BogDan Vatra < bogdan@licentia.eu >
# Copyright (C) 2009-2021 Robin Stuart <rstuart114@gmail.com>
# vim: set ts=4 sw=4 et :
2008-09-18 18:44:52 +04:00
project(zint_frontend)
2021-07-06 18:35:04 +03:00
set(${PROJECT_NAME}_SRCS main.c)
2021-07-06 18:35:04 +03:00
add_executable(${PROJECT_NAME} ${zint_frontend_SRCS})
2008-09-18 18:44:52 +04:00
if(WIN32)
target_sources(${PROJECT_NAME} PRIVATE zint.rc)
endif()
2021-07-06 18:35:04 +03:00
target_include_directories(${PROJECT_NAME} PUBLIC "${CMAKE_SOURCE_DIR}/backend")
2008-09-18 18:44:52 +04:00
2021-07-06 18:35:04 +03:00
set_target_properties(${PROJECT_NAME} PROPERTIES OUTPUT_NAME "zint")
2008-09-24 12:59:39 +04:00
2021-07-06 18:35:04 +03:00
target_link_libraries(${PROJECT_NAME} zint)
if(NOT HAVE_GETOPT)
2021-07-06 18:35:04 +03:00
target_link_libraries(${PROJECT_NAME} zint_bundled_getopt)
endif()
2021-07-06 18:35:04 +03:00
install(TARGETS ${PROJECT_NAME} DESTINATION "${BIN_INSTALL_DIR}" RUNTIME)
if(UNIX)
install(FILES "${CMAKE_SOURCE_DIR}/docs/zint.1" DESTINATION "${MAN_INSTALL_DIR}/man1" COMPONENT doc)
endif()
if(ZINT_TEST)
add_subdirectory(tests)
endif()