37 lines
607 B
CMake
37 lines
607 B
CMake
add_executable(
|
|
yaze_emu
|
|
app/rom.cc
|
|
app/emu/emu.cc
|
|
${YAZE_APP_EMU_SRC}
|
|
${YAZE_APP_CORE_SRC}
|
|
${YAZE_APP_EDITOR_SRC}
|
|
${YAZE_APP_GFX_SRC}
|
|
${YAZE_APP_ZELDA3_SRC}
|
|
${YAZE_GUI_SRC}
|
|
${IMGUI_SRC}
|
|
)
|
|
|
|
if (APPLE)
|
|
list(APPEND YAZE_APP_CORE_SRC
|
|
app/core/platform/app_delegate.mm)
|
|
endif()
|
|
|
|
target_include_directories(
|
|
yaze_emu PUBLIC
|
|
lib/
|
|
app/
|
|
${CMAKE_SOURCE_DIR}/incl/
|
|
${CMAKE_SOURCE_DIR}/src/
|
|
${PNG_INCLUDE_DIRS}
|
|
${SDL2_INCLUDE_DIR}
|
|
)
|
|
|
|
target_link_libraries(
|
|
yaze_emu PUBLIC
|
|
${ABSL_TARGETS}
|
|
${SDL_TARGETS}
|
|
${PNG_LIBRARIES}
|
|
${CMAKE_DL_LIBS}
|
|
ImGui
|
|
ImGuiTestEngine
|
|
) |