[nostalgia] Rename nost-pack to nostalgia-pack
This commit is contained in:
		@@ -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])
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -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
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user