summaryrefslogtreecommitdiffstats
path: root/src/citra
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2015-08-28 21:57:08 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2015-09-09 00:35:12 +0200
commit078969bdd09204fa2ce7b36960b2134a53b9ce41 (patch)
treecd35d535ad8223a85886fd9c80fc77b300f6956c /src/citra
parentCMake: Fix architecture detection on MSVC (diff)
downloadyuzu-078969bdd09204fa2ce7b36960b2134a53b9ce41.tar
yuzu-078969bdd09204fa2ce7b36960b2134a53b9ce41.tar.gz
yuzu-078969bdd09204fa2ce7b36960b2134a53b9ce41.tar.bz2
yuzu-078969bdd09204fa2ce7b36960b2134a53b9ce41.tar.lz
yuzu-078969bdd09204fa2ce7b36960b2134a53b9ce41.tar.xz
yuzu-078969bdd09204fa2ce7b36960b2134a53b9ce41.tar.zst
yuzu-078969bdd09204fa2ce7b36960b2134a53b9ce41.zip
Diffstat (limited to 'src/citra')
-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)