summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-10-20 23:08:26 +0200
committerLioncash <mathew1800@gmail.com>2018-10-20 23:36:31 +0200
commitc8beb665dcb9e681acdb0517b8fc50d02695cb39 (patch)
tree438465be4d1202d61508eb24a7f9cfd5fe65d016 /src
parentMerge pull request #1535 from ReinUsesLisp/fixup-position (diff)
downloadyuzu-c8beb665dcb9e681acdb0517b8fc50d02695cb39.tar
yuzu-c8beb665dcb9e681acdb0517b8fc50d02695cb39.tar.gz
yuzu-c8beb665dcb9e681acdb0517b8fc50d02695cb39.tar.bz2
yuzu-c8beb665dcb9e681acdb0517b8fc50d02695cb39.tar.lz
yuzu-c8beb665dcb9e681acdb0517b8fc50d02695cb39.tar.xz
yuzu-c8beb665dcb9e681acdb0517b8fc50d02695cb39.tar.zst
yuzu-c8beb665dcb9e681acdb0517b8fc50d02695cb39.zip
Diffstat (limited to 'src')
-rw-r--r--src/web_service/CMakeLists.txt2
-rw-r--r--src/yuzu/CMakeLists.txt8
2 files changed, 5 insertions, 5 deletions
diff --git a/src/web_service/CMakeLists.txt b/src/web_service/CMakeLists.txt
index 1c83e9c34..93878f8ab 100644
--- a/src/web_service/CMakeLists.txt
+++ b/src/web_service/CMakeLists.txt
@@ -10,7 +10,7 @@ add_library(web_service STATIC
create_target_directory_groups(web_service)
get_directory_property(OPENSSL_LIBS
- DIRECTORY ${CMAKE_SOURCE_DIR}/externals/libressl
+ DIRECTORY ${PROJECT_SOURCE_DIR}/externals/libressl
DEFINITION OPENSSL_LIBS)
target_compile_definitions(web_service PUBLIC -DCPPHTTPLIB_OPENSSL_SUPPORT)
target_link_libraries(web_service PRIVATE common json-headers ${OPENSSL_LIBS} httplib lurlparser)
diff --git a/src/yuzu/CMakeLists.txt b/src/yuzu/CMakeLists.txt
index 04464ad5e..0d24e8eb0 100644
--- a/src/yuzu/CMakeLists.txt
+++ b/src/yuzu/CMakeLists.txt
@@ -82,10 +82,10 @@ set(UIS
)
file(GLOB COMPAT_LIST
- ${CMAKE_BINARY_DIR}/dist/compatibility_list/compatibility_list.qrc
- ${CMAKE_BINARY_DIR}/dist/compatibility_list/compatibility_list.json)
-file(GLOB_RECURSE ICONS ${CMAKE_SOURCE_DIR}/dist/icons/*)
-file(GLOB_RECURSE THEMES ${CMAKE_SOURCE_DIR}/dist/qt_themes/*)
+ ${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.qrc
+ ${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.json)
+file(GLOB_RECURSE ICONS ${PROJECT_SOURCE_DIR}/dist/icons/*)
+file(GLOB_RECURSE THEMES ${PROJECT_SOURCE_DIR}/dist/qt_themes/*)
qt5_wrap_ui(UI_HDRS ${UIS})