9 lines
168 B
CMake
9 lines
168 B
CMake
file(GLOB_RECURSE BETTOLA_SOURCES "src/*.cpp")
|
|
|
|
add_library(bettola
|
|
${BETTOLA_SOURCES}
|
|
)
|
|
|
|
target_include_directories(bettola PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
|
|