zint-barcode-generator/frontend/CMakeLists.txt

24 lines
614 B
CMake
Raw Normal View History

# Copyright (C) 2008 by BogDan Vatra < bogdan@licentia.eu >
# Copyright (C) 2009-2021 Robin Stuart <rstuart114@gmail.com>
2008-09-18 10:44:52 -04:00
project(zint_frontend)
set(zint_frontend_SRCS main.c)
2008-09-26 08:11:43 -04:00
include_directories(BEFORE "${CMAKE_SOURCE_DIR}/backend")
2008-09-18 10:44:52 -04:00
add_executable(zint_frontend ${zint_frontend_SRCS})
set_target_properties(zint_frontend PROPERTIES OUTPUT_NAME "zint")
2008-09-24 04:59:39 -04:00
2008-09-18 10:44:52 -04:00
target_link_libraries(zint_frontend zint)
if(NOT HAVE_GETOPT)
target_link_libraries(zint_frontend zint_bundled_getopt)
endif()
install(TARGETS zint_frontend DESTINATION "${BIN_INSTALL_DIR}" RUNTIME)
if(ZINT_TEST)
add_subdirectory(tests)
endif()