Setup repo
This commit is contained in:
parent
4dc37c0e2e
commit
05b42d1b86
8 changed files with 231 additions and 0 deletions
14
mineziper/CMakeLists.txt
Normal file
14
mineziper/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
set(mineziper_STATIC_SRC ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
||||
set(mineziper_STATIC_INCLUDE ${CMAKE_CURRENT_SOURCE_DIR}/include)
|
||||
|
||||
# mineziper sources
|
||||
set(mineziper_SRC
|
||||
${mineziper_STATIC_SRC}/mineziper.c
|
||||
)
|
||||
|
||||
set(mineziper_INCLUDE
|
||||
)
|
||||
|
||||
add_executable(mineziper ${mineziper_SRC} ${mineziper_INCLUDE})
|
||||
target_include_directories(mineziper PUBLIC ${mineziper_STATIC_INCLUDE})
|
||||
target_link_libraries(mineziper PUBLIC libmineziper)
|
||||
Loading…
Add table
Add a link
Reference in a new issue