mirror of
https://git.code.sf.net/p/zint/code
synced 2025-06-02 16:09:51 -04:00
cmake buildsystem
This commit is contained in:
parent
b6c5e74476
commit
f4d73b209a
8 changed files with 133 additions and 4 deletions
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)
|
Loading…
Add table
Add a link
Reference in a new issue