mirror of
https://github.com/ApfelTeeSaft/WV-Networking.git
synced 2026-09-02 19:24:13 +00:00
10 lines
190 B
CMake
10 lines
190 B
CMake
cmake_minimum_required(VERSION 3.24)
|
|
|
|
add_executable(SimpleServer
|
|
main.cpp
|
|
)
|
|
|
|
target_link_libraries(SimpleServer PRIVATE WVNet)
|
|
|
|
target_compile_features(SimpleServer PRIVATE cxx_std_20)
|