9 lines
147 B
CMake
9 lines
147 B
CMake
file(GLOB_RECURSE BETTOLAS_SOURCES "src/*.cpp")
|
|
|
|
add_executable(bettolas
|
|
${BETTOLAS_SOURCES}
|
|
)
|
|
|
|
target_link_libraries(bettolas PRIVATE bettola)
|
|
|