mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-05 06:22:45 +01:00
d7ad14ae20
Passing -pthread to GCC as a flag makes it both link to libpthread, and make C standard library routines reentrant. This makes the additional explicit links unnecessary. Additionally, on OSX, this is the default behavior, and clang will print a message about it being unused if it's present there.
21 lines
587 B
CMake
21 lines
587 B
CMake
set(SRCS
|
|
emu_window/emu_window_glfw.cpp
|
|
citra.cpp
|
|
config.cpp
|
|
citra.rc
|
|
)
|
|
set(HEADERS
|
|
emu_window/emu_window_glfw.h
|
|
config.h
|
|
default_ini.h
|
|
resource.h
|
|
)
|
|
|
|
create_directory_groups(${SRCS} ${HEADERS})
|
|
|
|
add_executable(citra ${SRCS} ${HEADERS})
|
|
target_link_libraries(citra core common video_core)
|
|
target_link_libraries(citra ${GLFW_LIBRARIES} ${OPENGL_gl_LIBRARY} inih)
|
|
target_link_libraries(citra ${PLATFORM_LIBRARIES})
|
|
|
|
#install(TARGETS citra RUNTIME DESTINATION ${bindir})
|