summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2015-08-28 16:57:08 -0300
committerGravatar Yuri Kunde Schlesner2015-09-08 19:35:12 -0300
commit078969bdd09204fa2ce7b36960b2134a53b9ce41 (patch)
treecd35d535ad8223a85886fd9c80fc77b300f6956c /src
parentCMake: Fix architecture detection on MSVC (diff)
downloadyuzu-078969bdd09204fa2ce7b36960b2134a53b9ce41.tar.gz
yuzu-078969bdd09204fa2ce7b36960b2134a53b9ce41.tar.xz
yuzu-078969bdd09204fa2ce7b36960b2134a53b9ce41.zip
CMake: Add option to download Qt and GLFW binaries over HTTP
Diffstat (limited to 'src')
-rw-r--r--src/citra/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/citra/CMakeLists.txt b/src/citra/CMakeLists.txt
index beb96bd30..e7f8a17f9 100644
--- a/src/citra/CMakeLists.txt
+++ b/src/citra/CMakeLists.txt
@@ -13,6 +13,9 @@ set(HEADERS
13 13
14create_directory_groups(${SRCS} ${HEADERS}) 14create_directory_groups(${SRCS} ${HEADERS})
15 15
16include_directories(${GLFW_INCLUDE_DIRS})
17link_directories(${GLFW_LIBRARY_DIRS})
18
16add_executable(citra ${SRCS} ${HEADERS}) 19add_executable(citra ${SRCS} ${HEADERS})
17target_link_libraries(citra core video_core common) 20target_link_libraries(citra core video_core common)
18target_link_libraries(citra ${GLFW_LIBRARIES} ${OPENGL_gl_LIBRARY} inih glad) 21target_link_libraries(citra ${GLFW_LIBRARIES} ${OPENGL_gl_LIBRARY} inih glad)