Skip to content

Commit 70219aa

Browse files
committed
chore: macOS 빌드에 필요한 CMake 파일 수정
1 parent efb1263 commit 70219aa

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

indra/newview/CMakeLists.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1767,7 +1767,7 @@ if (DARWIN)
17671767
# Add resource files to the project.
17681768
set(viewer_RESOURCE_FILES
17691769
heuguchon_icon.icns
1770-
Info-Firestorm.plist
1770+
Info-Heuguchon.plist
17711771
Firestorm.xib/
17721772
# CMake doesn't seem to support Xcode language variants well just yet
17731773
English.lproj/InfoPlist.strings
@@ -2573,17 +2573,17 @@ if (DARWIN)
25732573
# magically known to CMake -- it's that these names are referenced in the
25742574
# Info-SecondLife.plist file in the configure_file() directive below.
25752575
#set(product "${VIEWER_CHANNEL}")
2576-
set(product "Firestorm")
2577-
set(MACOSX_EXECUTABLE_NAME "Firestorm")
2578-
set(MACOSX_BUNDLE_INFO_STRING "Firestorm Viewer")
2576+
set(product "Heuguchon")
2577+
set(MACOSX_EXECUTABLE_NAME "Heuguchon")
2578+
set(MACOSX_BUNDLE_INFO_STRING "Heuguchon Client")
25792579
set(MACOSX_BUNDLE_ICON_FILE "heuguchon_icon.icns")
2580-
set(MACOSX_BUNDLE_GUI_IDENTIFIER "org.firestormviewer.firestorm")
2580+
set(MACOSX_BUNDLE_GUI_IDENTIFIER "kr.wiselight.heuguchon")
25812581
set(MACOSX_BUNDLE_LONG_VERSION_STRING "${VIEWER_CHANNEL} ${VIEWER_SHORT_VERSION}.${VIEWER_VERSION_REVISION}")
2582-
set(MACOSX_BUNDLE_BUNDLE_NAME "Firestorm")
2582+
set(MACOSX_BUNDLE_BUNDLE_NAME "Heuguchon")
25832583
set(MACOSX_BUNDLE_SHORT_VERSION_STRING "${VIEWER_SHORT_VERSION}.${VIEWER_VERSION_REVISION}")
25842584
set(MACOSX_BUNDLE_BUNDLE_VERSION "${VIEWER_SHORT_VERSION}${VIEWER_MACOSX_PHASE}${VIEWER_REVISION}")
2585-
set(MACOSX_BUNDLE_COPYRIGHT "Copyright 2010-2024 The Phoenix Firestorm Project, Inc.")
2586-
set(MACOSX_BUNDLE_NSMAIN_NIB_FILE "Firestorm.nib")
2585+
set(MACOSX_BUNDLE_COPYRIGHT "Copyright 2021-2025 WISELIGHT.")
2586+
set(MACOSX_BUNDLE_NSMAIN_NIB_FILE "Heuguchon.nib")
25872587
set(MACOSX_BUNDLE_NSPRINCIPAL_CLASS "LLApplication")
25882588

25892589
# https://blog.kitware.com/upcoming-in-cmake-2-8-12-osx-rpath-support/
@@ -2598,7 +2598,7 @@ if (DARWIN)
25982598
# SIGH, as of 2018-05-24 (cmake 3.11.1) the INSTALL_RPATH property simply
25992599
# does not work. Try this:
26002600
LINK_FLAGS "-rpath @loader_path/../Frameworks"
2601-
MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/Info-Firestorm.plist"
2601+
MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/Info-Heuguchon.plist"
26022602
XCODE_ATTRIBUTE_PRODUCT_BUNDLE_IDENTIFIER "${MACOSX_BUNDLE_GUI_IDENTIFIER}"
26032603
)
26042604

@@ -2610,7 +2610,7 @@ if (DARWIN)
26102610
configure_file(
26112611
# <FS:CR> Use Firestorm plist
26122612
#"${CMAKE_CURRENT_SOURCE_DIR}/Info-SecondLife.plist"
2613-
"${CMAKE_CURRENT_SOURCE_DIR}/Info-Firestorm.plist"
2613+
"${CMAKE_CURRENT_SOURCE_DIR}/Info-Heuguchon.plist"
26142614
"${VIEWER_APP_BUNDLE}/Contents/Info.plist"
26152615
)
26162616

0 commit comments

Comments
 (0)