[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) shutil.copyfile(nostalgia_bin, nostalgia_gba)
subprocess.run([ 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]) subprocess.run(['gbafix', nostalgia_gba])

View File

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