diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-03-20 22:10:57 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-03-20 22:10:57 +0530 |
| commit | fdeb33d34a97d062a120f72da919f81d7b1d45bf (patch) | |
| tree | 91165d5e3e718d4008bf73259f45d1705965f4b0 /CMakeLists.txt | |
| parent | 9e3474b5d8ee4afdd9c03cfb4a151ffebfca36b7 (diff) | |
| download | null-browser-fdeb33d34a97d062a120f72da919f81d7b1d45bf.tar.gz null-browser-fdeb33d34a97d062a120f72da919f81d7b1d45bf.zip | |
Move header files to src
Diffstat (limited to '')
| -rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c4edca2..7854e82 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,13 +14,13 @@ find_package(PkgConfig REQUIRED) # Source file(GLOB_RECURSE SOURCE_FILES src/*.cpp) list(FILTER SOURCE_FILES EXCLUDE REGEX "src/main.cpp$") -file(GLOB_RECURSE HEADER_FILES include/*.hpp) +file(GLOB_RECURSE HEADER_FILES src/*.hpp) file(GLOB_RECURSE SPEC_FILES spec/*.cpp) # project add_executable(${PROJECT}) target_sources(${PROJECT} PRIVATE src/main.cpp ${SOURCE_FILES}) -target_include_directories(${PROJECT} PRIVATE include/) +target_include_directories(${PROJECT} PRIVATE src/) # Qt find_package(Qt6 REQUIRED COMPONENTS Core Widgets WebEngineWidgets Test) @@ -53,7 +53,7 @@ enable_testing() add_executable(tests) target_sources(tests PRIVATE ${SOURCE_FILES} ${MOC_SRCS} ${SPEC_FILES}) target_include_directories(tests PRIVATE - include/ + src/ spec/ ${LuaJIT_INCLUDE_DIRS} ${LibUV_INCLUDE_DIRS} |
