mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2025-01-13 02:09:06 +01:00
2d6aca4563
* build: Rework CI and move all bundling into new build target. * ci: Use "mingw" in msys2 release names for compatibility. * ci: Use "osx" in macOS release names for compatibility. * ci: Disable macOS upload. Will be moved to a separate PR for canary merge.
35 lines
975 B
CMake
35 lines
975 B
CMake
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/CMakeModules)
|
|
|
|
add_executable(citra
|
|
citra.cpp
|
|
citra.rc
|
|
config.cpp
|
|
config.h
|
|
default_ini.h
|
|
emu_window/emu_window_sdl2.cpp
|
|
emu_window/emu_window_sdl2.h
|
|
emu_window/emu_window_sdl2_gl.cpp
|
|
emu_window/emu_window_sdl2_gl.h
|
|
emu_window/emu_window_sdl2_sw.cpp
|
|
emu_window/emu_window_sdl2_sw.h
|
|
precompiled_headers.h
|
|
resource.h
|
|
)
|
|
|
|
create_target_directory_groups(citra)
|
|
|
|
target_link_libraries(citra PRIVATE citra_common citra_core input_common network)
|
|
target_link_libraries(citra PRIVATE inih glad)
|
|
if (MSVC)
|
|
target_link_libraries(citra PRIVATE getopt)
|
|
endif()
|
|
target_link_libraries(citra PRIVATE ${PLATFORM_LIBRARIES} SDL2::SDL2 Threads::Threads)
|
|
|
|
if(UNIX AND NOT APPLE)
|
|
install(TARGETS citra RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
|
|
endif()
|
|
|
|
if (CITRA_USE_PRECOMPILED_HEADERS)
|
|
target_precompile_headers(citra PRIVATE precompiled_headers.h)
|
|
endif()
|