File tree 4 files changed +18
-6
lines changed
4 files changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ if(WIN32)
73
73
set (LOCALEDIR "locale" )
74
74
elseif (APPLE )
75
75
set (SHAREDIR "." )
76
- set (BINDIR "./bin " )
76
+ set (BINDIR "." )
77
77
set (DOCDIR "./doc/${PROJECT_NAME} " )
78
78
set (EXAMPLE_CONF_DIR ${DOCDIR} )
79
79
set (LOCALEDIR "locale" )
@@ -213,13 +213,11 @@ if(WIN32)
213
213
# This might be needed for some installer
214
214
#set(CPACK_PACKAGE_EXECUTABLES bin/minetest.exe "Minetest" bin/minetestserver.exe "Minetest Server")
215
215
elseif (APPLE )
216
- # see http://cmake.org/Wiki/CMake:CPackPackageGenerators#Bundle_.28OSX_only.29
217
216
set (CPACK_PACKAGE_FILE_NAME "${PROJECT_NAME} -${VERSION_STRING} -osx" )
218
- set (CPACK_PACKAGE_ICON ${CMAKE_CURRENT_SOURCE_DIR} /misc/mac/ minetest-icon.icns)
217
+ set (CPACK_PACKAGE_ICON ${CMAKE_CURRENT_SOURCE_DIR} /misc/minetest-icon.icns)
219
218
set (CPACK_BUNDLE_NAME ${PROJECT_NAME} )
220
219
set (CPACK_BUNDLE_ICON ${CPACK_PACKAGE_ICON} )
221
- set (CPACK_BUNDLE_PLIST ${CMAKE_CURRENT_SOURCE_DIR} /misc/mac/Info.plist)
222
- set (CPACK_BUNDLE_STARTUP_COMMAND ${CMAKE_CURRENT_SOURCE_DIR} /misc/mac/minetest-mac.sh)
220
+ set (CPACK_BUNDLE_PLIST ${CMAKE_CURRENT_SOURCE_DIR} /misc/Info.plist)
223
221
set (CPACK_GENERATOR "Bundle" )
224
222
else ()
225
223
set (CPACK_PACKAGE_FILE_NAME "${PROJECT_NAME} -${VERSION_STRING} -linux" )
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version =" 1.0" >
4
+ <dict >
5
+ <key >CFBundleDevelopmentRegion </key >
6
+ <string >English </string >
7
+ <key >CFBundleExecutable </key >
8
+ <string >../Resources/minetest </string >
9
+ <key >CFBundleIconFile </key >
10
+ <string >minetest.icns </string >
11
+ <key >CFBundleIdentifier </key >
12
+ <string >net.minetest.minetest </string >
13
+ </dict >
14
+ </plist >
Original file line number Diff line number Diff line change @@ -528,7 +528,7 @@ void initializePaths()
528
528
{
529
529
dstream<<" Bundle resource path: " <<path<<std::endl;
530
530
// chdir(path);
531
- path_share = std::string (path) + DIR_DELIM + " share " ;
531
+ path_share = std::string (path) + DIR_DELIM + STATIC_SHAREDIR ;
532
532
}
533
533
else
534
534
{
You can’t perform that action at this time.
0 commit comments