mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
18 lines
421 B
CMake
18 lines
421 B
CMake
# (c) 2008 by BogDan Vatra < bogdan@licentia.eu >
|
|
|
|
project(zint_frontend)
|
|
|
|
set(zint_frontend_SRCS main.c )
|
|
|
|
include_directories(BEFORE "${CMAKE_SOURCE_DIR}/backend")
|
|
|
|
add_executable(zint_frontend ${zint_frontend_SRCS})
|
|
|
|
set_target_properties(zint_frontend PROPERTIES OUTPUT_NAME "zint")
|
|
|
|
add_dependencies(zint_frontend zint)
|
|
|
|
link_directories( "${CMAKE_BINARY_DIR}/backend" )
|
|
|
|
target_link_libraries(zint_frontend zint)
|