From 7707fb4ed8ad8c951d9f41ce39823093d30a9f67 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Thu, 7 Jun 2018 13:03:47 +0200 Subject: Split webengine/webprofile into lib/web --- lib/web/CMakeLists.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 lib/web/CMakeLists.txt (limited to 'lib/web/CMakeLists.txt') diff --git a/lib/web/CMakeLists.txt b/lib/web/CMakeLists.txt new file mode 100644 index 0000000..c5d5eba --- /dev/null +++ b/lib/web/CMakeLists.txt @@ -0,0 +1,17 @@ +# Find includes in corresponding build directories +set(CMAKE_INCLUDE_CURRENT_DIR ON) + +# Instruct CMake to run moc automatically when needed. +set(CMAKE_AUTOMOC ON) + +add_library(web + webprofile.cpp + webprofile.h +) + +#target_include_directories(web +# PRIVATE ${Boost_INCLUDE_DIRS} +# PRIVATE .. +#) + +target_link_libraries(web Qt5::WebEngineWidgets) -- cgit v1.2.1