2013-01-11 01:25:40 +00:00
|
|
|
cmake_minimum_required(VERSION 2.8.9)
|
2013-01-29 00:01:20 +00:00
|
|
|
project(MultiMC5)
|
2013-01-11 01:25:40 +00:00
|
|
|
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
|
|
|
|
|
|
|
|
#### Check for machine endianness ####
|
|
|
|
INCLUDE(TestBigEndian)
|
|
|
|
TEST_BIG_ENDIAN(BIGENDIAN)
|
|
|
|
IF(${BIGENDIAN})
|
|
|
|
ADD_DEFINITIONS(-DMULTIMC_BIG_ENDIAN)
|
|
|
|
ENDIF(${BIGENDIAN})
|
|
|
|
|
2013-01-22 04:56:12 +00:00
|
|
|
# First, include header overrides
|
|
|
|
include_directories(hacks)
|
2013-01-11 01:25:40 +00:00
|
|
|
|
|
|
|
#### Find the required Qt parts ####
|
|
|
|
find_package(Qt5Widgets)
|
|
|
|
#find_package(Qt5Declarative)
|
|
|
|
|
|
|
|
include_directories(${Qt5Widgets_INCLUDE_DIRS})
|
|
|
|
|
|
|
|
# find ZLIB for quazip
|
|
|
|
find_package(ZLIB REQUIRED)
|
|
|
|
|
|
|
|
# Add quazip
|
|
|
|
add_subdirectory(quazip)
|
|
|
|
|
|
|
|
# Add bspatch
|
|
|
|
add_subdirectory(patchlib)
|
|
|
|
include_directories(patchlib)
|
|
|
|
|
|
|
|
# add the java launcher
|
|
|
|
add_subdirectory(launcher)
|
|
|
|
|
|
|
|
IF(UNIX)
|
|
|
|
# assume GCC, add C++0x/C++11 stuff
|
|
|
|
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
|
|
|
|
ELSEIF(MINGW)
|
|
|
|
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++0x")
|
|
|
|
ENDIF()
|
|
|
|
|
|
|
|
# Set the path where CMake will look for modules.
|
|
|
|
set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}")
|
|
|
|
|
|
|
|
|
|
|
|
set(MultiMC_VERSION_MAJOR 5)
|
|
|
|
set(MultiMC_VERSION_MINOR 0)
|
|
|
|
set(MultiMC_VERSION_REV 0)
|
|
|
|
|
|
|
|
SET(MultiMC_VERSION_BUILD 0 CACHE STRING "Build number.")
|
|
|
|
message(STATUS "MultiMC build #${MultiMC_VERSION_BUILD}")
|
|
|
|
|
|
|
|
IF (DEFINED MultiMC_BUILD_TAG)
|
|
|
|
message(STATUS "Build tag: ${MultiMC_BUILD_TAG}")
|
|
|
|
ELSE ()
|
|
|
|
message(STATUS "No build tag specified.")
|
|
|
|
ENDIF ()
|
|
|
|
|
|
|
|
if( CMAKE_SIZEOF_VOID_P EQUAL 8 )
|
|
|
|
set (MultiMC_ARCH "x64"
|
|
|
|
CACHE STRING "Architecture we're building for.")
|
|
|
|
else()
|
|
|
|
set (MultiMC_ARCH "x86"
|
|
|
|
CACHE STRING "Architecture we're building for.")
|
|
|
|
endif()
|
|
|
|
message (STATUS "Architecture is ${MultiMC_ARCH}")
|
|
|
|
|
|
|
|
SET(MultiMC_Extra_Label "")
|
|
|
|
|
|
|
|
IF (WIN32)
|
|
|
|
SET(MultiMC_JOB_NAME "MultiMC4Windows" CACHE STRING "Jenkins job name.")
|
|
|
|
ELSEIF(UNIX AND APPLE)
|
|
|
|
SET(MultiMC_JOB_NAME "MultiMC4OSX" CACHE STRING "Jenkins job name.")
|
|
|
|
# This is here because the scheme doesn't exactly apply to every kind of build...
|
|
|
|
SET(MultiMC_Extra_Label ",label=osx")
|
|
|
|
ELSE()
|
|
|
|
SET(MultiMC_JOB_NAME "MultiMC4Linux" CACHE STRING "Jenkins job name.")
|
|
|
|
ENDIF()
|
|
|
|
|
|
|
|
SET(MultiMC_JOB_URL "http://ci.forkk.net/job/${MultiMC_JOB_NAME}/arch=${MultiMC_ARCH}${MultiMC_Extra_Label}/"
|
|
|
|
CACHE STRING "URL of the jenkins job to pull updates from.")
|
|
|
|
message(STATUS "Job URL: ${MultiMC_JOB_URL}")
|
|
|
|
|
|
|
|
configure_file("${PROJECT_SOURCE_DIR}/config.h.in"
|
|
|
|
"${PROJECT_BINARY_DIR}/config.h")
|
|
|
|
|
|
|
|
|
|
|
|
SET(MULTIMC_SOURCES
|
|
|
|
main.cpp
|
2013-01-20 00:16:07 +00:00
|
|
|
|
|
|
|
data/appsettings.cpp
|
|
|
|
data/inifile.cpp
|
2013-01-11 01:25:40 +00:00
|
|
|
data/instancebase.cpp
|
2013-01-22 04:56:12 +00:00
|
|
|
data/instancemodel.cpp
|
2013-01-20 00:16:07 +00:00
|
|
|
data/stdinstance.cpp
|
2013-01-29 00:01:20 +00:00
|
|
|
data/version.cpp
|
2013-01-20 00:16:07 +00:00
|
|
|
|
|
|
|
gui/mainwindow.cpp
|
|
|
|
gui/modeditwindow.cpp
|
|
|
|
gui/settingsdialog.cpp
|
|
|
|
|
2013-01-11 01:25:40 +00:00
|
|
|
util/pathutils.cpp
|
2013-01-29 06:26:24 +00:00
|
|
|
util/osutils.cpp
|
2013-01-11 01:25:40 +00:00
|
|
|
|
|
|
|
java/javautils.cpp
|
|
|
|
java/annotations.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
SET(MULTIMC_HEADERS
|
|
|
|
gui/mainwindow.h
|
2013-01-20 00:16:07 +00:00
|
|
|
gui/modeditwindow.h
|
|
|
|
gui/settingsdialog.h
|
|
|
|
|
|
|
|
data/appsettings.h
|
|
|
|
data/inifile.h
|
2013-01-11 01:25:40 +00:00
|
|
|
data/instancebase.h
|
2013-01-22 04:56:12 +00:00
|
|
|
data/instancemodel.h
|
2013-01-20 00:16:07 +00:00
|
|
|
data/stdinstance.h
|
2013-01-29 00:01:20 +00:00
|
|
|
data/version.h
|
2013-01-20 00:16:07 +00:00
|
|
|
|
2013-01-28 21:35:09 +00:00
|
|
|
util/apputils.h
|
2013-01-11 01:25:40 +00:00
|
|
|
util/pathutils.h
|
2013-01-29 06:26:24 +00:00
|
|
|
util/osutils.h
|
2013-01-20 00:16:07 +00:00
|
|
|
|
2013-01-11 01:25:40 +00:00
|
|
|
multimc_pragma.h
|
|
|
|
|
|
|
|
java/annotations.h
|
|
|
|
java/classfile.h
|
|
|
|
java/constants.h
|
|
|
|
java/endian.h
|
|
|
|
java/errors.h
|
|
|
|
java/javautils.h
|
|
|
|
java/membuffer.h
|
|
|
|
)
|
|
|
|
|
2013-01-20 00:16:07 +00:00
|
|
|
SET(MULTIMC5_UIS
|
|
|
|
gui/mainwindow.ui
|
|
|
|
gui/modeditwindow.ui
|
|
|
|
gui/settingsdialog.ui
|
|
|
|
)
|
|
|
|
|
2013-01-11 01:25:40 +00:00
|
|
|
SET_SOURCE_FILES_PROPERTIES(resources/MultiMCLauncher.jar GENERATED)
|
|
|
|
|
2013-01-20 00:16:07 +00:00
|
|
|
QT5_WRAP_UI(MULTIMC_UI ${MULTIMC5_UIS})
|
2013-01-11 01:25:40 +00:00
|
|
|
QT5_ADD_RESOURCES(MULTIMC_QRC multimc.qrc)
|
|
|
|
|
2013-01-29 00:01:20 +00:00
|
|
|
add_executable(MultiMC ${MULTIMC_SOURCES} ${MULTIMC_HEADERS} ${MULTIMC_UI} ${MULTIMC_QRC})
|
|
|
|
qt5_use_modules(MultiMC Widgets)
|
|
|
|
target_link_libraries(MultiMC quazip patchlib)
|
|
|
|
add_dependencies(MultiMC MultiMCLauncher)
|
|
|
|
install(TARGETS MultiMC RUNTIME DESTINATION bin)
|