mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-28 19:59:02 +02:00
also, fixes CI not targeting the right flag settings. this pr needs to add the room exe removal from lime3ds. Signed-off-by: Aleksandr Popovich <alekpopo@pm.me> Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/106 Co-authored-by: Aleksandr Popovich <alekpopo@pm.me> Co-committed-by: Aleksandr Popovich <alekpopo@pm.me>
11 lines
334 B
CMake
11 lines
334 B
CMake
add_executable(yuzu_room_standalone
|
|
yuzu_room_standalone.cpp
|
|
)
|
|
|
|
set_target_properties(yuzu_room_standalone PROPERTIES OUTPUT_NAME "eden-room")
|
|
|
|
target_link_libraries(yuzu_room_standalone PRIVATE yuzu-room)
|
|
|
|
if(UNIX AND NOT APPLE)
|
|
install(TARGETS yuzu_room_standalone RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
|
|
endif()
|