mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	
						commit
						e7d2118858
					
				
					 3 changed files with 13 additions and 31 deletions
				
			
		|  | @ -5,8 +5,8 @@ cmake_minimum_required(VERSION 2.8.11) | ||||||
| project(citra) | project(citra) | ||||||
| 
 | 
 | ||||||
| if (NOT MSVC) | if (NOT MSVC) | ||||||
|     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wno-attributes") |     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wno-attributes -pthread") | ||||||
|     add_definitions(-pthread) |     set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pthread") | ||||||
| else() | else() | ||||||
|     # Silence deprecation warnings |     # Silence deprecation warnings | ||||||
|     add_definitions(/D_CRT_SECURE_NO_WARNINGS) |     add_definitions(/D_CRT_SECURE_NO_WARNINGS) | ||||||
|  | @ -106,10 +106,17 @@ if (ENABLE_GLFW) | ||||||
| endif() | endif() | ||||||
| 
 | 
 | ||||||
| IF (APPLE) | IF (APPLE) | ||||||
|     # CoreFoundation is required only on OSX |     FIND_LIBRARY(COCOA_LIBRARY Cocoa)           # Umbrella framework for everything GUI-related | ||||||
|     FIND_LIBRARY(COREFOUNDATION_LIBRARY CoreFoundation) |     FIND_LIBRARY(IOKIT_LIBRARY IOKit)           # GLFW dependency | ||||||
|  |     FIND_LIBRARY(COREVIDEO_LIBRARY CoreVideo)   # GLFW dependency | ||||||
|  |     set(PLATFORM_LIBRARIES iconv ${COCOA_LIBRARY} ${IOKIT_LIBRARY} ${COREVIDEO_LIBRARY}) | ||||||
|  |      | ||||||
|     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") |     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") | ||||||
|     set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -stdlib=libc++") |     set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -stdlib=libc++") | ||||||
|  | ELSEIF(WIN32) | ||||||
|  |     set(PLATFORM_LIBRARIES winmm) | ||||||
|  | ELSE() | ||||||
|  |     set(PLATFORM_LIBRARIES rt) | ||||||
| ENDIF (APPLE) | ENDIF (APPLE) | ||||||
| 
 | 
 | ||||||
| option(ENABLE_QT "Enable the Qt frontend" ON) | option(ENABLE_QT "Enable the Qt frontend" ON) | ||||||
|  |  | ||||||
|  | @ -16,20 +16,6 @@ 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) |  | ||||||
|     target_link_libraries(citra -pthread) |  | ||||||
| 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}) | ||||||
|  |  | ||||||
|  | @ -60,17 +60,6 @@ endif() | ||||||
| add_executable(citra-qt ${SRCS} ${HEADERS} ${UI_HDRS}) | add_executable(citra-qt ${SRCS} ${HEADERS} ${UI_HDRS}) | ||||||
| target_link_libraries(citra-qt core common video_core qhexedit) | target_link_libraries(citra-qt core common video_core qhexedit) | ||||||
| target_link_libraries(citra-qt ${OPENGL_gl_LIBRARY} ${CITRA_QT_LIBS}) | target_link_libraries(citra-qt ${OPENGL_gl_LIBRARY} ${CITRA_QT_LIBS}) | ||||||
| 
 | target_link_libraries(citra-qt ${PLATFORM_LIBRARIES}) | ||||||
| if (UNIX) |  | ||||||
|     target_link_libraries(citra-qt -pthread) |  | ||||||
| endif() |  | ||||||
| 
 |  | ||||||
| if (APPLE) |  | ||||||
|     target_link_libraries(citra-qt iconv ${COREFOUNDATION_LIBRARY}) |  | ||||||
| elseif (WIN32) |  | ||||||
|     target_link_libraries(citra-qt winmm wsock32 ws2_32) |  | ||||||
| else() # Unix |  | ||||||
|     target_link_libraries(citra-qt rt) |  | ||||||
| endif() |  | ||||||
| 
 | 
 | ||||||
| #install(TARGETS citra-qt RUNTIME DESTINATION ${bindir}) | #install(TARGETS citra-qt RUNTIME DESTINATION ${bindir}) | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue