mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-10-31 17:56:47 +00:00 
			
		
		
		
	Fixed paths to OpenMW icons
This commit is contained in:
		
							parent
							
								
									d6a5915bbd
								
							
						
					
					
						commit
						30f3fbac3c
					
				
					 2 changed files with 19 additions and 19 deletions
				
			
		|  | @ -257,10 +257,10 @@ set_directory_properties(PROPERTIES COMPILE_DEFINITIONS_DEBUG DEBUG=1) | |||
| 
 | ||||
| # Set up Ogre plugin folder & debug suffix | ||||
| if (APPLE) | ||||
| 	# Ogre on OS X doesn't use "_d" suffix (see Ogre's CMakeLists.txt) | ||||
| 	add_definitions(-DOGRE_PLUGIN_DEBUG_SUFFIX="") | ||||
|     # Ogre on OS X doesn't use "_d" suffix (see Ogre's CMakeLists.txt) | ||||
|     add_definitions(-DOGRE_PLUGIN_DEBUG_SUFFIX="") | ||||
| else () | ||||
| 	add_definitions(-DOGRE_PLUGIN_DEBUG_SUFFIX="_d") | ||||
|     add_definitions(-DOGRE_PLUGIN_DEBUG_SUFFIX="_d") | ||||
| endif() | ||||
| 
 | ||||
| add_definitions(-DOGRE_PLUGIN_DIR_REL="${OGRE_PLUGIN_DIR_REL}") | ||||
|  | @ -278,9 +278,9 @@ add_subdirectory(files/mygui) | |||
| # Specify build paths | ||||
| 
 | ||||
| if (APPLE) | ||||
| 	set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${APP_BUNDLE_DIR}/Contents/MacOS") | ||||
|     set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${APP_BUNDLE_DIR}/Contents/MacOS") | ||||
| else (APPLE) | ||||
| 	set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${OpenMW_BINARY_DIR}") | ||||
|     set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${OpenMW_BINARY_DIR}") | ||||
| endif (APPLE) | ||||
| 
 | ||||
| # Other files | ||||
|  | @ -334,7 +334,7 @@ if(DPKG_PROGRAM) | |||
| 
 | ||||
|     #Install icon and desktop file | ||||
|     INSTALL(FILES "${OpenMW_BINARY_DIR}/openmw.desktop" DESTINATION "share/applications/" PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ COMPONENT "openmw") | ||||
|     INSTALL(FILES "${OpenMW_SOURCE_DIR}/apps/launcher/resources/images/openmw.png" DESTINATION "share/pixmaps/" PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ COMPONENT "openmw") | ||||
|     INSTALL(FILES "${OpenMW_SOURCE_DIR}/files/launcher/images/openmw.png" DESTINATION "share/pixmaps/" PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ COMPONENT "openmw") | ||||
| 
 | ||||
|     #Install global configuration files | ||||
|     INSTALL(FILES "${OpenMW_BINARY_DIR}/settings-default.cfg" DESTINATION "../etc/openmw/" PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ COMPONENT "openmw") | ||||
|  | @ -355,7 +355,7 @@ if(DPKG_PROGRAM) | |||
|  Data files from the original game is required to run it.") | ||||
|     SET(CPACK_DEBIAN_PACKAGE_NAME "openmw") | ||||
|     SET(CPACK_DEBIAN_PACKAGE_VERSION "${VERSION_STRING}") | ||||
| 		SET(CPACK_PACKAGE_EXECUTABLES "openmw;OpenMW bsatool;Bsatool esmtool;Esmtool omwlauncher;OMWLauncher mwiniimporter;MWiniImporter") | ||||
|         SET(CPACK_PACKAGE_EXECUTABLES "openmw;OpenMW bsatool;Bsatool esmtool;Esmtool omwlauncher;OMWLauncher mwiniimporter;MWiniImporter") | ||||
|     SET(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>= 2.11.2), libfreetype6 (>= 2.2.1), libgcc1 (>= 1:4.1.1), libmpg123-0 (>= 1.12.1), libois-1.3.0 (>= 1.3.0), libopenal1 (>= 1:1.12.854), libsndfile1 (>= 1.0.23), libstdc++6 (>= 4.4.5), libuuid1 (>= 2.17.2), libqtgui4 (>= 4.7.0)") | ||||
| 
 | ||||
|     SET(CPACK_DEBIAN_PACKAGE_SECTION "Games") | ||||
|  | @ -510,10 +510,10 @@ if (WIN32) | |||
|         4986 # Undocumented warning that occurs in the crtdbg.h file | ||||
|         4996 # Function was declared deprecated | ||||
| 
 | ||||
| 		# cause by ogre extensivly | ||||
| 		4193 # #pragma warning(pop) : no matching '#pragma warning(push)' | ||||
| 		4251 # class 'XXXX' needs to have dll-interface to be used by clients of class 'YYYY' | ||||
| 		4275 # non dll-interface struct 'XXXX' used as base for dll-interface class 'YYYY' | ||||
|         # cause by ogre extensivly | ||||
|         4193 # #pragma warning(pop) : no matching '#pragma warning(push)' | ||||
|         4251 # class 'XXXX' needs to have dll-interface to be used by clients of class 'YYYY' | ||||
|         4275 # non dll-interface struct 'XXXX' used as base for dll-interface class 'YYYY' | ||||
| 
 | ||||
|         # OpenMW specific warnings | ||||
|         4099 # Type mismatch, declared class or struct is defined with other type | ||||
|  | @ -525,7 +525,7 @@ if (WIN32) | |||
|         4309 # Variable overflow, trying to store 128 in a signed char for example | ||||
|         4355 # Using 'this' in member initialization list | ||||
|         4701 # Potentially uninitialized local variable used | ||||
| 		4800 # Boolean optimization warning, e.g. myBool = (myInt != 0) instead of myBool = myInt | ||||
|         4800 # Boolean optimization warning, e.g. myBool = (myInt != 0) instead of myBool = myInt | ||||
|         ) | ||||
| 
 | ||||
|     foreach(d ${WARNINGS_DISABLE}) | ||||
|  | @ -536,12 +536,12 @@ if (WIN32) | |||
|     set_target_properties(shiny.OgrePlatform PROPERTIES COMPILE_FLAGS ${WARNINGS}) | ||||
|     set_target_properties(components PROPERTIES COMPILE_FLAGS ${WARNINGS}) | ||||
|     if (BUILD_LAUNCHER) | ||||
| 		set_target_properties(omwlauncher PROPERTIES COMPILE_FLAGS ${WARNINGS}) | ||||
| 	endif (BUILD_LAUNCHER) | ||||
|         set_target_properties(omwlauncher PROPERTIES COMPILE_FLAGS ${WARNINGS}) | ||||
|     endif (BUILD_LAUNCHER) | ||||
|     set_target_properties(openmw PROPERTIES COMPILE_FLAGS ${WARNINGS}) | ||||
| 		if (BUILD_BSATOOL) | ||||
|         if (BUILD_BSATOOL) | ||||
|         set_target_properties(bsatool PROPERTIES COMPILE_FLAGS ${WARNINGS}) | ||||
| 			endif (BUILD_BSATOOL) | ||||
|             endif (BUILD_BSATOOL) | ||||
|     if (BUILD_ESMTOOL) | ||||
|         set_target_properties(esmtool PROPERTIES COMPILE_FLAGS ${WARNINGS}) | ||||
|     endif (BUILD_ESMTOOL) | ||||
|  | @ -666,9 +666,9 @@ if (NOT WIN32 AND NOT DPKG_PROGRAM AND NOT APPLE) | |||
|     IF(BUILD_LAUNCHER) | ||||
|         INSTALL(PROGRAMS "${OpenMW_BINARY_DIR}/omwlauncher" DESTINATION "${BINDIR}" ) | ||||
|     ENDIF(BUILD_LAUNCHER) | ||||
| 		IF(BUILD_BSATOOL) | ||||
|         IF(BUILD_BSATOOL) | ||||
|         INSTALL(PROGRAMS "${OpenMW_BINARY_DIR}/bsatool" DESTINATION "${BINDIR}" ) | ||||
| 			ENDIF(BUILD_BSATOOL) | ||||
|             ENDIF(BUILD_BSATOOL) | ||||
|     IF(BUILD_ESMTOOL) | ||||
|         INSTALL(PROGRAMS "${OpenMW_BINARY_DIR}/esmtool" DESTINATION "${BINDIR}" ) | ||||
|     ENDIF(BUILD_ESMTOOL) | ||||
|  |  | |||
|  | @ -1 +1 @@ | |||
| IDI_ICON1               ICON    DISCARDABLE     "resources/images/openmw.ico" | ||||
| IDI_ICON1               ICON    DISCARDABLE     "images/openmw.ico" | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue