40 lines
684 B
CMake
40 lines
684 B
CMake
add_executable(
|
|
z3ed
|
|
cli/z3ed.cc
|
|
cli/handlers/compress.cc
|
|
cli/handlers/patch.cc
|
|
cli/handlers/tile16_transfer.cc
|
|
app/rom.cc
|
|
app/core/common.cc
|
|
app/editor/utils/gfx_context.cc
|
|
${YAZE_APP_EMU_SRC}
|
|
${YAZE_APP_GFX_SRC}
|
|
${YAZE_APP_ZELDA3_SRC}
|
|
${YAZE_GUI_SRC}
|
|
${IMGUI_SRC}
|
|
${ASAR_STATIC_SRC}
|
|
)
|
|
|
|
target_include_directories(
|
|
z3ed PUBLIC
|
|
lib/
|
|
app/
|
|
${ASAR_INCLUDE_DIR}
|
|
${CMAKE_SOURCE_DIR}/src/
|
|
${PNG_INCLUDE_DIRS}
|
|
${SDL2_INCLUDE_DIR}
|
|
${GLEW_INCLUDE_DIRS}
|
|
)
|
|
|
|
target_link_libraries(
|
|
z3ed PUBLIC
|
|
asar-static
|
|
${ABSL_TARGETS}
|
|
${SDL_TARGETS}
|
|
${PNG_LIBRARIES}
|
|
${GLEW_LIBRARIES}
|
|
${OPENGL_LIBRARIES}
|
|
${CMAKE_DL_LIBS}
|
|
ImGuiTestEngine
|
|
ImGui
|
|
) |