30 lines
450 B
CMake
30 lines
450 B
CMake
add_executable(
|
|
z3ed
|
|
cli/z3ed.cc
|
|
cli/patch.cc
|
|
cli/command_handler.cc
|
|
app/rom.cc
|
|
app/core/common.cc
|
|
${YAZE_APP_GFX_SRC}
|
|
)
|
|
|
|
target_include_directories(
|
|
z3ed PUBLIC
|
|
lib/
|
|
app/
|
|
${CMAKE_SOURCE_DIR}/src/
|
|
${PNG_INCLUDE_DIRS}
|
|
${SDL2_INCLUDE_DIR}
|
|
${GLEW_INCLUDE_DIRS}
|
|
)
|
|
|
|
target_link_libraries(
|
|
z3ed PUBLIC
|
|
${ABSL_TARGETS}
|
|
${SDL_TARGETS}
|
|
${PNG_LIBRARIES}
|
|
${GLEW_LIBRARIES}
|
|
${OPENGL_LIBRARIES}
|
|
${CMAKE_DL_LIBS}
|
|
ImGui
|
|
) |