|
@@ -16,20 +16,10 @@ create_directory_groups(${SRCS} ${HEADERS})
|
|
|
add_executable(citra ${SRCS} ${HEADERS})
|
|
add_executable(citra ${SRCS} ${HEADERS})
|
|
|
target_link_libraries(citra core common video_core)
|
|
target_link_libraries(citra core common video_core)
|
|
|
target_link_libraries(citra ${GLFW_LIBRARIES} ${OPENGL_gl_LIBRARY} inih)
|
|
target_link_libraries(citra ${GLFW_LIBRARIES} ${OPENGL_gl_LIBRARY} inih)
|
|
|
|
|
+target_link_libraries(citra ${PLATFORM_LIBRARIES})
|
|
|
|
|
|
|
|
if (UNIX)
|
|
if (UNIX)
|
|
|
target_link_libraries(citra -pthread)
|
|
target_link_libraries(citra -pthread)
|
|
|
endif()
|
|
endif()
|
|
|
|
|
|
|
|
-if (APPLE)
|
|
|
|
|
- target_link_libraries(citra iconv ${COREFOUNDATION_LIBRARY})
|
|
|
|
|
-elseif (WIN32)
|
|
|
|
|
- target_link_libraries(citra winmm wsock32 ws2_32)
|
|
|
|
|
- if (MINGW) # GCC does not support codecvt, so use iconv instead
|
|
|
|
|
- target_link_libraries(citra iconv)
|
|
|
|
|
- endif()
|
|
|
|
|
-else() # Unix
|
|
|
|
|
- target_link_libraries(citra rt)
|
|
|
|
|
-endif()
|
|
|
|
|
-
|
|
|
|
|
#install(TARGETS citra RUNTIME DESTINATION ${bindir})
|
|
#install(TARGETS citra RUNTIME DESTINATION ${bindir})
|