mirror of
https://gitcode.com/Zengtudor/EnvEditorWebview.git
synced 2025-06-03 20:34:53 +00:00
11 lines
274 B
CMake
11 lines
274 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
|
|
project(eew CXX)
|
|
|
|
find_package(webview REQUIRED)
|
|
|
|
file(GLOB_RECURSE SRC_CPP CONFIGURE_DEPENDS ${CMAKE_CURRENT_LIST_DIR}/src/*.cpp)
|
|
|
|
add_executable(${PROJECT_NAME} ${SRC_CPP})
|
|
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE webview::core) |