12 lines
282 B
CMake
12 lines
282 B
CMake
file(GLOB_RECURSE BETTOLAS_SOURCES "src/*.cpp")
|
|
|
|
add_executable(bettolas
|
|
${BETTOLAS_SOURCES}
|
|
)
|
|
|
|
find_package(SDL3 REQUIRED)
|
|
|
|
target_link_libraries(bettolas PRIVATE bettola SDL3::SDL3 SDL3_net::SDL3_net)
|
|
|
|
target_include_directories(bettolas PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/src)
|