- cmake_minimum_required(VERSION 3.18)
- project(netscore)
- # add_executable(${PROJECT_NAME} main.cpp ui.c)
- add_executable(${PROJECT_NAME} main.cpp ui.c)
- # add_executable(netscore-server server.cpp)
- find_package(SDL2 REQUIRED)
- target_link_libraries(${PROJECT_NAME} PRIVATE SDL2::SDL2 SDL2_ttf SDL2_image)
- add_executable(client-test client.cpp)
|