mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 08:12:44 +03:00
20 lines
276 B
CMake
20 lines
276 B
CMake
file(GLOB PRIVATE_SOURCES "*.cpp")
|
|
|
|
add_library(async STATIC
|
|
${PRIVATE_SOURCES}
|
|
)
|
|
|
|
target_include_directories(async
|
|
PRIVATE
|
|
${CMAKE_SOURCE_DIR}/src
|
|
)
|
|
|
|
target_link_libraries(async
|
|
PRIVATE
|
|
event
|
|
util
|
|
PUBLIC
|
|
common
|
|
storm
|
|
)
|