From d7b0739cca80d0af95367e801972d10e3ea859db Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Fri, 7 Mar 2025 18:36:23 +0530 Subject: Ah shit, here we go again --- CMakeLists.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') 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) -- cgit v1.3.1