Skip to content

Commit

Permalink
Fix path in GUI cmake file
Browse files Browse the repository at this point in the history
  • Loading branch information
bjelich committed Jul 28, 2022
1 parent 9f2cd76 commit a59b652
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/radeon_gpu_analyzer_gui/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ include_directories("${PROJECT_SOURCE_DIR}/../common")
include_directories("${PROJECT_SOURCE_DIR}/../../external/third-party")
include_directories(${UPDATECHECKAPI_INC_DIRS})
if (GUI_AUTOMATION)
include_directories("${PROJECT_SOURCE_DIR}/../../../RGA-Internal/tests_gui/include")
include_directories("${PROJECT_SOURCE_DIR}/../../../rga_internal_utils/tests_gui/include")
endif()

add_subdirectory(../../../QtCommon/Scaling QtCommon/Scaling)
Expand Down Expand Up @@ -113,15 +113,15 @@ file(GLOB WINDOWS_INC
# Add source files for GUI automated tests.
if (GUI_AUTOMATION)
file(GLOB TESTS_GUI_CPP_INC
"../../../RGA-Internal/tests_gui/include/*.h"
"../../../rga_internal_utils/tests_gui/include/*.h"
)
set(CPP_INC ${CPP_INC} ${TESTS_GUI_CPP_INC})
file(GLOB TESTS_GUI_CPP_SRC
"../../../RGA-Internal/tests_gui/src/*.cpp"
"../../../rga_internal_utils/tests_gui/src/*.cpp"
)
set(CPP_SRC ${CPP_SRC} ${TESTS_GUI_CPP_SRC})
file(GLOB TESTS_GUI_MOC_INC
"../../../RGA-Internal/tests_gui/include/qt/*.h"
"../../../rga_internal_utils/tests_gui/include/qt/*.h"
)
set(MOC_INC ${MOC_INC} ${TESTS_GUI_MOC_INC})

Expand Down

0 comments on commit a59b652

Please sign in to comment.