[nostalgia] Rename nost-pack to nostalgia-pack

This commit is contained in:
Gary Talent 2023-12-10 22:12:02 -06:00
parent a2361c3fd9
commit 9a5bdebbd7
2 changed files with 5 additions and 5 deletions

View File

@ -28,5 +28,5 @@ nostalgia_gba = 'nostalgia.gba'
shutil.copyfile(nostalgia_bin, nostalgia_gba)
subprocess.run([
f'{bin}/nost-pack', '-src', nostalgia_project, '-rom-bin', nostalgia_gba])
f'{bin}/nostalgia-pack', '-src', nostalgia_project, '-rom-bin', nostalgia_gba])
subprocess.run(['gbafix', nostalgia_gba])

View File

@ -1,21 +1,21 @@
add_executable(
nost-pack
nostalgia-pack
${OLYMPIC_PATH}/applib/applib.cpp
)
target_link_libraries(
nost-pack
nostalgia-pack
KeelPack-AppLib
)
if(CMAKE_BUILD_TYPE STREQUAL "Release" AND NOT WIN32)
# enable LTO
set_property(TARGET nost-pack PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE)
set_property(TARGET nostalgia-pack PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE)
endif()
install(
TARGETS
nost-pack
nostalgia-pack
RUNTIME DESTINATION
bin
)