webcxx-example/CMakeLists.txt
2022-10-07 16:38:14 +02:00

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})