[Yunq] Create libyunq and move parsing code to it.
This commit is contained in:
parent
91f3f8ee43
commit
7d9f9a7ae9
16 changed files with 310 additions and 260 deletions
17
lib/yunq/CMakeLists.txt
Normal file
17
lib/yunq/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
set(yunq_files
|
||||
serialize.cpp
|
||||
)
|
||||
|
||||
add_library(yunq STATIC
|
||||
${yunq_files}
|
||||
)
|
||||
|
||||
target_link_libraries(yunq
|
||||
glacier)
|
||||
|
||||
target_include_directories(yunq
|
||||
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}
|
||||
PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/..")
|
||||
|
||||
set_target_properties(yunq PROPERTIES
|
||||
COMPILE_FLAGS "${CMAKE_CXX_FLAGS} ${BASE_COMPILE_FLAGS}")
|
||||
Loading…
Add table
Add a link
Reference in a new issue