diff options
| author | 2015-08-28 16:57:08 -0300 | |
|---|---|---|
| committer | 2015-09-08 19:35:12 -0300 | |
| commit | 078969bdd09204fa2ce7b36960b2134a53b9ce41 (patch) | |
| tree | cd35d535ad8223a85886fd9c80fc77b300f6956c /src | |
| parent | CMake: Fix architecture detection on MSVC (diff) | |
| download | yuzu-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.txt | 3 |
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 | ||
| 14 | create_directory_groups(${SRCS} ${HEADERS}) | 14 | create_directory_groups(${SRCS} ${HEADERS}) |
| 15 | 15 | ||
| 16 | include_directories(${GLFW_INCLUDE_DIRS}) | ||
| 17 | link_directories(${GLFW_LIBRARY_DIRS}) | ||
| 18 | |||
| 16 | add_executable(citra ${SRCS} ${HEADERS}) | 19 | add_executable(citra ${SRCS} ${HEADERS}) |
| 17 | target_link_libraries(citra core video_core common) | 20 | target_link_libraries(citra core video_core common) |
| 18 | target_link_libraries(citra ${GLFW_LIBRARIES} ${OPENGL_gl_LIBRARY} inih glad) | 21 | target_link_libraries(citra ${GLFW_LIBRARIES} ${OPENGL_gl_LIBRARY} inih glad) |