mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
19 lines
255 B
CMake
19 lines
255 B
CMake
file(GLOB PRIVATE_SOURCES "*.cpp")
|
|
|
|
add_library(ffx STATIC
|
|
${PRIVATE_SOURCES}
|
|
)
|
|
|
|
target_include_directories(ffx
|
|
PRIVATE
|
|
${CMAKE_SOURCE_DIR}/src
|
|
)
|
|
|
|
target_link_libraries(ffx
|
|
PRIVATE
|
|
console
|
|
gx
|
|
PUBLIC
|
|
storm
|
|
)
|