Update yaze

This commit is contained in:
Justin Scofield
2022-07-24 00:02:12 -04:00
parent 874786cc57
commit e4bdc525c2
2 changed files with 3 additions and 1 deletions

View File

@@ -98,6 +98,7 @@ target_link_libraries(
absl::core_headers
absl::raw_logging_internal
absl::failure_signal_handler
absl::flat_hash_map
SDL2main
${PNG_LIBRARIES}
${SDL2_LIBRARIES}
@@ -112,7 +113,7 @@ set_target_properties(yaze
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin"
LINK_FLAGS "${CMAKE_CURRENT_SOURCE_DIR}/gui/yaze.res"
LINK_FLAGS "${CMAKE_CURRENT_SOURCE_DIR}/yaze.res"
)
set (source "${CMAKE_SOURCE_DIR}/assets")

View File

@@ -16,5 +16,6 @@ int main(int argc, char** argv) {
controller.doRender();
}
controller.onExit();
return EXIT_SUCCESS;
}