summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2015-08-28 16:57:08 -0300
committerYuri Kunde Schlesner <yuriks@yuriks.net>2015-09-08 19:35:12 -0300
commit078969bdd09204fa2ce7b36960b2134a53b9ce41 (patch)
treecd35d535ad8223a85886fd9c80fc77b300f6956c /src
parenteb26a1941edd76b11066fe3e013bdf060308a25b (diff)
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
create_directory_groups(${SRCS} ${HEADERS})
+include_directories(${GLFW_INCLUDE_DIRS})
+link_directories(${GLFW_LIBRARY_DIRS})
+
add_executable(citra ${SRCS} ${HEADERS})
target_link_libraries(citra core video_core common)
target_link_libraries(citra ${GLFW_LIBRARIES} ${OPENGL_gl_LIBRARY} inih glad)