webcxx-example/CMakeLists.txt

10 lines
256 B
CMake
Raw Permalink Normal View History

2022-10-07 14:38:14 +00:00
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})