Skip to content

Commit

Permalink
Fix: Qt5 Include Directories
Browse files Browse the repository at this point in the history
  • Loading branch information
thearchivalone committed Jul 15, 2024
1 parent b258498 commit 0993a5a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions engine/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ set(${PROJECT_NAME}_incPaths
if(UNIX AND NOT APPLE AND NOT LINUX)
set(${PROJECT_NAME}_incPaths
${${PROJECT_NAME}_incPaths}
include_directories(${Qt5Gamepad_INCLUDE_DIRS})
include_directories(${Qt5Gui_INCLUDE_DIRS})
include_directories(${Qt5Svg_INCLUDE_DIRS})
include_directories(${Qt5Widgets_INCLUDE_DIRS})
include_directories(${Qt5Xml_INCLUDE_DIRS})
${Qt5Gamepad_INCLUDE_DIRS}
${Qt5Gui_INCLUDE_DIRS}
${Qt5Svg_INCLUDE_DIRS}
${Qt5Widgets_INCLUDE_DIRS}
${Qt5Xml_INCLUDE_DIRS}
"/usr/local/include"
)
endif()
Expand Down
4 changes: 2 additions & 2 deletions modules/uikit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ set(${PROJECT_NAME}_incPaths
if(UNIX AND NOT APPLE AND NOT LINUX)
set(${PROJECT_NAME}_incPaths
${${PROJECT_NAME}_incPaths}
include_directories(${Qt5Gui_INCLUDE_DIRS})
include_directories(${Qt5Widgets_INCLUDE_DIRS})
${Qt5Gui_INCLUDE_DIRS}
${Qt5Widgets_INCLUDE_DIRS}
"/usr/local/include"
)
endif()
Expand Down

0 comments on commit 0993a5a

Please sign in to comment.