10 lines
256 B
CMake
10 lines
256 B
CMake
|
cmake_minimum_required(VERSION 3.8..3.22)
|
||
|
|
||
|
project(example-webcxx-app LANGUAGES CXX)
|
||
|
|
||
|
add_executable(main main.cpp)
|
||
|
|
||
|
include(webcxx/CMakeLists.txt)
|
||
|
|
||
|
target_include_directories(main PUBLIC ${webcxx_include})
|
||
|
target_link_libraries(main PUBLIC ${webcxx_libs})
|