make compile
This commit is contained in:
parent
b5e26c6ec1
commit
961987aadb
|
@ -48,8 +48,8 @@ SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC -gdwarf-2 -msse4.2 -mfma")
|
||||||
add_subdirectory(deps)
|
add_subdirectory(deps)
|
||||||
|
|
||||||
# api
|
# api
|
||||||
aux_source_directory(include/client API_SRC)
|
add_library(api INTERFACE)
|
||||||
add_library(api INTERFACE ${API_SRC})
|
target_include_directories(api INTERFACE "include/client")
|
||||||
|
|
||||||
# src
|
# src
|
||||||
add_subdirectory(source)
|
add_subdirectory(source)
|
||||||
|
|
|
@ -9,5 +9,5 @@ target_link_libraries(
|
||||||
common
|
common
|
||||||
PUBLIC os
|
PUBLIC os
|
||||||
PUBLIC util
|
PUBLIC util
|
||||||
PUBLIC api
|
INTERFACE api
|
||||||
)
|
)
|
Loading…
Reference in New Issue