2015-09-28 19:53:46 +01:00
cmake_minimum_required ( VERSION 3.1 )
2013-09-26 12:49:58 +01:00
2014-04-06 17:12:48 +01:00
string ( COMPARE EQUAL "${CMAKE_SOURCE_DIR}" "${CMAKE_BUILD_DIR}" IS_IN_SOURCE_BUILD )
if ( IS_IN_SOURCE_BUILD )
2018-07-15 13:51:05 +01:00
message ( AUTHOR_WARNING "You are building MultiMC in-source. This is NOT recommended!" )
2014-04-06 17:12:48 +01:00
endif ( )
2014-04-06 18:43:09 +01:00
if ( WIN32 )
2018-07-15 13:51:05 +01:00
# In Qt 5.1+ we have our own main() function, don't autolink to qtmain on Windows
cmake_policy ( SET CMP0020 OLD )
2014-04-06 18:43:09 +01:00
endif ( )
2013-09-26 12:49:58 +01:00
2015-09-28 19:53:46 +01:00
project ( MultiMC )
2013-12-14 13:17:59 +00:00
enable_testing ( )
2013-01-11 01:25:40 +00:00
2018-01-22 03:28:07 +00:00
##################################### Set CMake options #####################################
2014-04-06 18:43:09 +01:00
set ( CMAKE_AUTOMOC ON )
set ( CMAKE_INCLUDE_CURRENT_DIR ON )
2013-01-11 01:25:40 +00:00
2014-04-06 18:43:09 +01:00
set ( CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/" )
2015-09-28 19:53:46 +01:00
2016-05-01 02:49:46 +01:00
# Output all executables and shared libs in the main build folder, not in subfolders.
set ( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${ PROJECT_BINARY_DIR } )
if ( UNIX )
2018-07-15 13:51:05 +01:00
set ( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${ PROJECT_BINARY_DIR } )
2016-05-01 02:49:46 +01:00
endif ( )
2016-03-12 23:44:37 +00:00
set ( CMAKE_JAVA_TARGET_OUTPUT_DIR ${ PROJECT_BINARY_DIR } /jars )
2014-01-11 01:06:22 +00:00
2013-02-21 18:35:33 +00:00
######## Set compiler flags ########
2015-09-28 19:53:46 +01:00
set ( CMAKE_CXX_STANDARD_REQUIRED true )
set ( CMAKE_C_STANDARD_REQUIRED true )
2016-01-09 00:39:51 +00:00
set ( CMAKE_CXX_STANDARD 11 )
2015-09-28 19:53:46 +01:00
set ( CMAKE_C_STANDARD 11 )
2015-09-05 17:46:57 +01:00
include ( GenerateExportHeader )
2018-07-06 18:46:28 +01:00
set ( CMAKE_CXX_FLAGS " -Wall -pedantic -Werror -D_GLIBCXX_USE_CXX11_ABI=0 -fstack-protector-strong --param=ssp-buffer-size=4 -O3 -D_FORTIFY_SOURCE=2 ${CMAKE_CXX_FLAGS}" )
2016-02-18 23:57:46 +00:00
if ( UNIX AND APPLE )
2018-07-15 13:51:05 +01:00
set ( CMAKE_CXX_FLAGS " -stdlib=libc++ ${CMAKE_CXX_FLAGS}" )
2016-02-18 23:57:46 +00:00
endif ( )
2015-10-11 19:06:46 +01:00
set ( CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Werror=return-type" )
2013-02-21 16:32:13 +00:00
2018-01-22 03:28:07 +00:00
##################################### Set Application options #####################################
######## Set URLs ########
2018-11-02 12:04:08 +00:00
set ( MultiMC_NEWS_RSS_URL "https://multimc.org/rss.xml" CACHE STRING "URL to fetch MultiMC's news RSS feed from." )
2018-01-22 03:28:07 +00:00
######## Set version numbers ########
2018-08-02 00:01:55 +01:00
set ( MultiMC_VERSION_MAJOR 0 )
set ( MultiMC_VERSION_MINOR 6 )
2019-01-06 21:56:05 +00:00
set ( MultiMC_VERSION_HOTFIX 5 )
2018-01-22 03:28:07 +00:00
# Build number
set ( MultiMC_VERSION_BUILD -1 CACHE STRING "Build number. -1 for no build number." )
# Build platform.
set ( MultiMC_BUILD_PLATFORM "" CACHE STRING "A short string identifying the platform that this build was built for. Only used by the notification system and to display in the about dialog." )
# Channel list URL
set ( MultiMC_CHANLIST_URL "" CACHE STRING "URL for the channel list." )
# Notification URL
set ( MultiMC_NOTIFICATION_URL "" CACHE STRING "URL for checking for notifications." )
# paste.ee API key
2018-03-13 07:02:11 +00:00
set ( MultiMC_PASTE_EE_API_KEY "utLvciUouSURFzfjPxLBf5W4ISsUX4pwBDF7N1AfZ" CACHE STRING "API key you can get from paste.ee when you register an account" )
2018-01-22 03:28:07 +00:00
# Google analytics ID
2018-03-13 07:02:11 +00:00
set ( MultiMC_ANALYTICS_ID "UA-87731965-2" CACHE STRING "ID you can get from Google analytics" )
2018-01-22 03:28:07 +00:00
#### Check the current Git commit and branch
include ( GetGitRevisionDescription )
get_git_head_revision ( MultiMC_GIT_REFSPEC MultiMC_GIT_COMMIT )
message ( STATUS "Git commit: ${MultiMC_GIT_COMMIT}" )
message ( STATUS "Git refspec: ${MultiMC_GIT_REFSPEC}" )
set ( MultiMC_RELEASE_VERSION_NAME "${MultiMC_VERSION_MAJOR}.${MultiMC_VERSION_MINOR}.${MultiMC_VERSION_HOTFIX}" )
#### Custom target to just print the version.
add_custom_target ( version echo "Version: ${MultiMC_RELEASE_VERSION_NAME}" )
2018-01-27 22:53:10 +00:00
################################ 3rd Party Libs ################################
# Find the required Qt parts
find_package ( Qt5Core REQUIRED )
find_package ( Qt5Widgets REQUIRED )
find_package ( Qt5Concurrent REQUIRED )
find_package ( Qt5Network REQUIRED )
find_package ( Qt5Test REQUIRED )
find_package ( Qt5Xml REQUIRED )
# The Qt5 cmake files don't provide its install paths, so ask qmake.
include ( QMakeQuery )
query_qmake ( QT_INSTALL_PLUGINS QT_PLUGINS_DIR )
query_qmake ( QT_INSTALL_IMPORTS QT_IMPORTS_DIR )
query_qmake ( QT_INSTALL_LIBS QT_LIBS_DIR )
query_qmake ( QT_INSTALL_LIBEXECS QT_LIBEXECS_DIR )
query_qmake ( QT_HOST_DATA QT_DATA_DIR )
set ( QT_MKSPECS_DIR ${ QT_DATA_DIR } /mkspecs )
if ( Qt5_POSITION_INDEPENDENT_CODE )
SET ( CMAKE_POSITION_INDEPENDENT_CODE ON )
endif ( )
2018-01-22 03:28:07 +00:00
####################################### Install layout #######################################
# How to install the build results
set ( MultiMC_LAYOUT "auto" CACHE STRING "The layout for MultiMC installation (auto, win-bundle, lin-bundle, lin-nodeps, lin-system, mac-bundle)" )
set_property ( CACHE MultiMC_LAYOUT PROPERTY STRINGS auto win-bundle lin-bundle lin-nodeps lin-system mac-bundle )
if ( MultiMC_LAYOUT STREQUAL "auto" )
2018-07-15 13:51:05 +01:00
if ( UNIX AND APPLE )
set ( MultiMC_LAYOUT_REAL "mac-bundle" )
elseif ( UNIX )
set ( MultiMC_LAYOUT_REAL "lin-nodeps" )
elseif ( WIN32 )
set ( MultiMC_LAYOUT_REAL "win-bundle" )
else ( )
message ( FATAL_ERROR "Cannot choose a sensible install layout for your platform." )
endif ( )
2018-01-22 03:28:07 +00:00
else ( )
2018-07-15 13:51:05 +01:00
set ( MultiMC_LAYOUT_REAL ${ MultiMC_LAYOUT } )
2018-01-22 03:28:07 +00:00
endif ( )
if ( MultiMC_LAYOUT_REAL STREQUAL "mac-bundle" )
2018-07-15 13:51:05 +01:00
set ( BINARY_DEST_DIR "MultiMC.app/Contents/MacOS" )
set ( LIBRARY_DEST_DIR "MultiMC.app/Contents/MacOS" )
set ( PLUGIN_DEST_DIR "MultiMC.app/Contents/MacOS" )
set ( RESOURCES_DEST_DIR "MultiMC.app/Contents/Resources" )
set ( JARS_DEST_DIR "MultiMC.app/Contents/MacOS/jars" )
2018-01-22 03:28:07 +00:00
2018-07-15 13:51:05 +01:00
set ( BUNDLE_DEST_DIR "." )
2018-01-22 03:28:07 +00:00
2018-07-15 13:51:05 +01:00
# Apps to bundle
set ( APPS "\${CMAKE_INSTALL_PREFIX}/MultiMC.app" )
2018-01-22 03:28:07 +00:00
2018-07-15 13:51:05 +01:00
# Mac bundle settings
set ( MACOSX_BUNDLE_BUNDLE_NAME "MultiMC" )
set ( MACOSX_BUNDLE_INFO_STRING "MultiMC Minecraft launcher and management utility." )
set ( MACOSX_BUNDLE_GUI_IDENTIFIER "org.multimc.MultiMC5" )
set ( MACOSX_BUNDLE_BUNDLE_VERSION "${MultiMC_VERSION_MAJOR}.${MultiMC_VERSION_MINOR}.${MultiMC_VERSION_HOTFIX}.${MultiMC_VERSION_BUILD}" )
set ( MACOSX_BUNDLE_SHORT_VERSION_STRING "${MultiMC_VERSION_MAJOR}.${MultiMC_VERSION_MINOR}.${MultiMC_VERSION_HOTFIX}.${MultiMC_VERSION_BUILD}" )
set ( MACOSX_BUNDLE_LONG_VERSION_STRING "${MultiMC_VERSION_MAJOR}.${MultiMC_VERSION_MINOR}.${MultiMC_VERSION_HOTFIX}.${MultiMC_VERSION_BUILD}" )
set ( MACOSX_BUNDLE_ICON_FILE MultiMC.icns )
2019-01-16 20:14:24 +00:00
set ( MACOSX_BUNDLE_COPYRIGHT "Copyright 2015-2019 MultiMC Contributors" )
2018-01-22 03:28:07 +00:00
2018-07-15 13:51:05 +01:00
# directories to look for dependencies
set ( DIRS ${ QT_LIBS_DIR } ${ QT_LIBEXECS_DIR } ${ CMAKE_LIBRARY_OUTPUT_DIRECTORY } ${ CMAKE_RUNTIME_OUTPUT_DIRECTORY } )
2018-01-22 03:28:07 +00:00
2018-07-15 13:51:05 +01:00
# install as bundle
set ( INSTALL_BUNDLE "full" )
2018-01-22 03:28:07 +00:00
2018-07-15 13:51:05 +01:00
# Add the icon
install ( FILES application/resources/MultiMC.icns DESTINATION ${ RESOURCES_DEST_DIR } )
2018-01-22 03:28:07 +00:00
elseif ( MultiMC_LAYOUT_REAL STREQUAL "lin-bundle" )
2018-07-15 13:51:05 +01:00
set ( BINARY_DEST_DIR "bin" )
set ( LIBRARY_DEST_DIR "bin" )
set ( PLUGIN_DEST_DIR "plugins" )
set ( BUNDLE_DEST_DIR "." )
set ( RESOURCES_DEST_DIR "." )
set ( JARS_DEST_DIR "bin/jars" )
2018-01-22 03:28:07 +00:00
2018-07-15 13:51:05 +01:00
# Apps to bundle
set ( APPS "\${CMAKE_INSTALL_PREFIX}/bin/MultiMC" )
2018-01-22 03:28:07 +00:00
2018-07-15 13:51:05 +01:00
# directories to look for dependencies
set ( DIRS ${ QT_LIBS_DIR } ${ QT_LIBEXECS_DIR } ${ CMAKE_LIBRARY_OUTPUT_DIRECTORY } ${ CMAKE_RUNTIME_OUTPUT_DIRECTORY } )
2018-01-22 03:28:07 +00:00
2018-07-15 13:51:05 +01:00
# install as bundle
set ( INSTALL_BUNDLE "full" )
2018-01-22 03:28:07 +00:00
2018-07-15 13:51:05 +01:00
# Set RPATH
SET ( MultiMC_BINARY_RPATH "$ORIGIN/" )
2018-01-22 03:28:07 +00:00
2018-07-15 13:51:05 +01:00
# Install basic runner script
install ( PROGRAMS application/package/linux/MultiMC DESTINATION ${ BUNDLE_DEST_DIR } )
2018-01-22 03:28:07 +00:00
elseif ( MultiMC_LAYOUT_REAL STREQUAL "lin-nodeps" )
2018-07-15 13:51:05 +01:00
set ( BINARY_DEST_DIR "bin" )
set ( LIBRARY_DEST_DIR "bin" )
set ( PLUGIN_DEST_DIR "plugins" )
set ( BUNDLE_DEST_DIR "." )
set ( RESOURCES_DEST_DIR "." )
set ( JARS_DEST_DIR "bin/jars" )
2018-01-22 03:28:07 +00:00
2018-07-15 13:51:05 +01:00
# install as bundle with no dependencies included
set ( INSTALL_BUNDLE "nodeps" )
2018-01-22 03:28:07 +00:00
2018-07-15 13:51:05 +01:00
# Set RPATH
SET ( MultiMC_BINARY_RPATH "$ORIGIN/" )
2018-01-22 03:28:07 +00:00
2018-07-15 13:51:05 +01:00
# Install basic runner script
install ( PROGRAMS application/package/linux/MultiMC DESTINATION ${ BUNDLE_DEST_DIR } )
2018-01-22 03:28:07 +00:00
elseif ( MultiMC_LAYOUT_REAL STREQUAL "lin-system" )
2018-07-15 13:51:05 +01:00
set ( MultiMC_APP_BINARY_NAME "multimc" CACHE STRING "Name of the MultiMC binary" )
set ( MultiMC_BINARY_DEST_DIR "bin" CACHE STRING "Path to the binary directory" )
set ( MultiMC_LIBRARY_DEST_DIR "lib${LIB_SUFFIX}" CACHE STRING "Path to the library directory" )
set ( MultiMC_SHARE_DEST_DIR "share/multimc" CACHE STRING "Path to the shared data directory" )
set ( JARS_DEST_DIR "${MultiMC_SHARE_DEST_DIR}/jars" )
2018-01-22 03:28:07 +00:00
2018-07-15 13:51:05 +01:00
set ( BINARY_DEST_DIR ${ MultiMC_BINARY_DEST_DIR } )
set ( LIBRARY_DEST_DIR ${ MultiMC_LIBRARY_DEST_DIR } )
2018-01-22 03:28:07 +00:00
2018-07-15 13:51:05 +01:00
MESSAGE ( STATUS "Compiling for linux system with ${MultiMC_SHARE_DEST_DIR} and MULTIMC_LINUX_DATADIR" )
SET ( MultiMC_APP_BINARY_DEFS "-DMULTIMC_JARS_LOCATION=${CMAKE_INSTALL_PREFIX}/${JARS_DEST_DIR}" "-DMULTIMC_LINUX_DATADIR" )
2018-01-22 03:28:07 +00:00
2018-07-15 13:51:05 +01:00
# install as bundle with no dependencies included
set ( INSTALL_BUNDLE "nodeps" )
2018-01-22 03:28:07 +00:00
elseif ( MultiMC_LAYOUT_REAL STREQUAL "win-bundle" )
2018-07-15 13:51:05 +01:00
set ( BINARY_DEST_DIR "." )
set ( LIBRARY_DEST_DIR "." )
set ( PLUGIN_DEST_DIR "." )
set ( BUNDLE_DEST_DIR "." )
set ( RESOURCES_DEST_DIR "." )
set ( JARS_DEST_DIR "jars" )
2018-01-22 03:28:07 +00:00
2018-07-15 13:51:05 +01:00
# Apps to bundle
set ( APPS "\${CMAKE_INSTALL_PREFIX}/MultiMC.exe" )
2018-01-22 03:28:07 +00:00
2018-07-15 13:51:05 +01:00
# directories to look for dependencies
set ( DIRS ${ QT_LIBS_DIR } ${ QT_LIBEXECS_DIR } ${ CMAKE_LIBRARY_OUTPUT_DIRECTORY } ${ CMAKE_RUNTIME_OUTPUT_DIRECTORY } )
2018-01-22 03:28:07 +00:00
2018-07-15 13:51:05 +01:00
# install as bundle
set ( INSTALL_BUNDLE "full" )
2018-01-22 03:28:07 +00:00
else ( )
2018-07-15 13:51:05 +01:00
message ( FATAL_ERROR "No sensible install layout set." )
2018-01-22 03:28:07 +00:00
endif ( )
2014-01-08 00:27:40 +00:00
################################ Included Libs ################################
2015-02-12 21:01:20 +00:00
include ( ExternalProject )
set_directory_properties ( PROPERTIES EP_BASE External )
2015-09-28 20:20:27 +01:00
option ( NBT_BUILD_SHARED "Build NBT shared library" ON )
option ( NBT_USE_ZLIB "Build NBT library with zlib support" OFF )
option ( NBT_BUILD_TESTS "Build NBT library tests" OFF ) #FIXME: fix unit tests.
2016-12-28 16:23:48 +00:00
set ( NBT_NAME MultiMC_nbt++ )
2018-01-22 03:28:07 +00:00
set ( NBT_DEST_DIR ${ LIBRARY_DEST_DIR } )
2016-04-10 14:53:05 +01:00
add_subdirectory ( libraries/libnbtplusplus )
2014-01-08 00:27:40 +00:00
2016-11-20 11:04:29 +00:00
add_subdirectory ( libraries/ganalytics ) # google analytics library
2017-01-01 18:59:46 +00:00
add_subdirectory ( libraries/systeminfo ) # system information library
2016-04-10 14:53:05 +01:00
add_subdirectory ( libraries/hoedown ) # markdown parser
add_subdirectory ( libraries/launcher ) # java based launcher part for Minecraft
add_subdirectory ( libraries/javacheck ) # java compatibility checker
add_subdirectory ( libraries/xz-embedded ) # xz compression
2017-05-06 16:22:14 +01:00
add_subdirectory ( libraries/quazip ) # zip manipulation library
2016-04-10 14:53:05 +01:00
add_subdirectory ( libraries/pack200 ) # java pack200 compression
add_subdirectory ( libraries/rainbow ) # Qt extension for colors
add_subdirectory ( libraries/iconfix ) # fork of Qt's QIcon loader
2016-10-30 01:37:38 +00:00
add_subdirectory ( libraries/LocalPeer ) # fork of a library from Qt solutions
2017-09-27 14:39:13 +01:00
add_subdirectory ( libraries/classparser ) # google analytics library
2015-03-01 21:20:57 +00:00
2015-02-11 18:56:06 +00:00
############################### Built Artifacts ###############################
2016-04-10 14:53:05 +01:00
add_subdirectory ( api/logic )
add_subdirectory ( api/gui )
2018-01-22 03:28:07 +00:00
# NOTE: this must always be last to appease the CMake deity of quirky install command evaluation order.
2018-01-27 20:59:06 +00:00
add_subdirectory ( application )