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