7d7ab70279
This both reduces redundancy in add_executable definitions, and makes it easier to link additional libraries. In particular, extra libraries are needed on OSX - see next commit.
26 lines
648 B
CMake
26 lines
648 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})
|
|
|
|
if (UNIX)
|
|
target_link_libraries(citra -pthread)
|
|
endif()
|
|
|
|
#install(TARGETS citra RUNTIME DESTINATION ${bindir})
|