diff options
Diffstat (limited to '')
| -rw-r--r-- | CMakeLists.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..96fa737 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,12 @@ +cmake_minimum_required(VERSION 3.16) +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) + +project(web-browser + VERSION 0.0.0 + LANGUAGES CXX) + +find_package(Qt6 REQUIRED COMPONENTS Widgets WebEngineWidgets) + +add_executable(web-browser src/main.cpp) + +target_link_libraries(web-browser Qt6::Widgets Qt6::WebEngineWidgets) |
