8 lines
142 B
CMake
8 lines
142 B
CMake
file(GLOB_RECURSE CLIENT_SOURCES "src/*.cpp")
|
|
|
|
add_executable(bettolac
|
|
${CLIENT_SOURCES}
|
|
)
|
|
|
|
target_link_libraries(bettolac PRIVATE bettola)
|