mirror of
https://github.com/thunderbrewhq/bc.git
synced 2025-12-12 10:02:30 +00:00
19 lines
242 B
CMake
19 lines
242 B
CMake
file(GLOB BC_SOURCES
|
|
"*.cpp"
|
|
"lock/*.cpp"
|
|
"system/**.cpp"
|
|
)
|
|
|
|
add_library(bc STATIC
|
|
${BC_SOURCES}
|
|
)
|
|
|
|
target_include_directories(bc
|
|
PUBLIC
|
|
${PROJECT_SOURCE_DIR}
|
|
)
|
|
|
|
target_link_libraries(bc
|
|
PUBLIC
|
|
storm
|
|
)
|