mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
cmake buildsystem
This commit is contained in:
15
frontend/CMakeLists.txt
Normal file
15
frontend/CMakeLists.txt
Normal file
@ -0,0 +1,15 @@
|
||||
# (c) 2008 by BogDan Vatra < bogdan@licentia.eu >
|
||||
|
||||
project(zint_frontend)
|
||||
|
||||
set(zint_frontend_SRCS main.c )
|
||||
|
||||
include_directories(BEFORE ../backend)
|
||||
|
||||
add_executable(zint_frontend ${zint_frontend_SRCS})
|
||||
|
||||
add_dependencies(zint_frontend zint)
|
||||
|
||||
link_directories( "../backend" )
|
||||
|
||||
target_link_libraries(zint_frontend zint)
|
Reference in New Issue
Block a user