2015-09-29 00:23:46 +05:30
|
|
|
project(MultiMC_logic)
|
2015-02-09 06:21:14 +05:30
|
|
|
|
2016-04-14 04:53:54 +05:30
|
|
|
include (UnitTest)
|
|
|
|
|
|
|
|
set(CORE_SOURCES
|
2015-02-09 06:21:14 +05:30
|
|
|
# LOGIC - Base classes and infrastructure
|
|
|
|
BaseInstaller.h
|
|
|
|
BaseInstaller.cpp
|
|
|
|
BaseVersionList.h
|
|
|
|
BaseVersionList.cpp
|
2016-10-03 04:25:54 +05:30
|
|
|
InstanceCreationTask.h
|
|
|
|
InstanceCreationTask.cpp
|
|
|
|
InstanceCopyTask.h
|
|
|
|
InstanceCopyTask.cpp
|
|
|
|
InstanceImportTask.h
|
|
|
|
InstanceImportTask.cpp
|
2015-02-09 06:21:14 +05:30
|
|
|
InstanceList.h
|
|
|
|
InstanceList.cpp
|
2016-11-03 05:40:16 +05:30
|
|
|
LoggedProcess.h
|
|
|
|
LoggedProcess.cpp
|
|
|
|
MessageLevel.cpp
|
|
|
|
MessageLevel.h
|
2016-10-03 04:25:54 +05:30
|
|
|
BaseInstanceProvider.h
|
|
|
|
FolderInstanceProvider.h
|
|
|
|
FolderInstanceProvider.cpp
|
2015-02-09 06:21:14 +05:30
|
|
|
BaseVersion.h
|
|
|
|
BaseInstance.h
|
|
|
|
BaseInstance.cpp
|
2015-02-12 00:26:55 +05:30
|
|
|
NullInstance.h
|
2015-04-13 02:20:52 +05:30
|
|
|
MMCZip.h
|
|
|
|
MMCZip.cpp
|
2015-04-19 07:49:29 +05:30
|
|
|
MMCStrings.h
|
|
|
|
MMCStrings.cpp
|
|
|
|
|
2016-11-15 07:21:22 +05:30
|
|
|
# Use tracking separate from memory management
|
|
|
|
Usable.h
|
|
|
|
|
2015-04-19 07:49:29 +05:30
|
|
|
# Prefix tree where node names are strings between separators
|
|
|
|
SeparatorPrefixTree.h
|
2015-02-09 06:21:14 +05:30
|
|
|
|
|
|
|
# WARNING: globals live here
|
|
|
|
Env.h
|
|
|
|
Env.cpp
|
|
|
|
|
|
|
|
# JSON parsing helpers
|
2015-05-28 23:08:29 +05:30
|
|
|
Json.h
|
|
|
|
Json.cpp
|
2016-01-05 12:02:52 +05:30
|
|
|
|
2015-05-28 23:08:29 +05:30
|
|
|
FileSystem.h
|
|
|
|
FileSystem.cpp
|
2016-01-05 12:02:52 +05:30
|
|
|
|
2015-05-28 23:08:29 +05:30
|
|
|
Exception.h
|
2015-02-09 06:21:14 +05:30
|
|
|
|
|
|
|
# RW lock protected map
|
|
|
|
RWStorage.h
|
|
|
|
|
|
|
|
# A variable that has an implicit default value and keeps track of changes
|
|
|
|
DefaultVariable.h
|
|
|
|
|
|
|
|
# a smart pointer wrapper intended for safer use with Qt signal/slot mechanisms
|
|
|
|
QObjectPtr.h
|
|
|
|
|
2015-08-18 05:55:24 +05:30
|
|
|
# Compression support
|
|
|
|
GZip.h
|
|
|
|
GZip.cpp
|
|
|
|
|
2015-10-05 05:17:27 +05:30
|
|
|
# Command line parameter parsing
|
|
|
|
Commandline.h
|
|
|
|
Commandline.cpp
|
|
|
|
|
|
|
|
# Version number string support
|
|
|
|
Version.h
|
|
|
|
Version.cpp
|
|
|
|
|
2016-04-14 04:53:54 +05:30
|
|
|
# A Recursive file system watcher
|
|
|
|
RecursiveFileSystemWatcher.h
|
|
|
|
RecursiveFileSystemWatcher.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
add_unit_test(FileSystem
|
|
|
|
SOURCES FileSystem_test.cpp
|
|
|
|
LIBS MultiMC_logic
|
|
|
|
DATA testdata
|
|
|
|
)
|
|
|
|
|
|
|
|
add_unit_test(GZip
|
|
|
|
SOURCES GZip_test.cpp
|
|
|
|
LIBS MultiMC_logic
|
|
|
|
)
|
|
|
|
|
|
|
|
set(PATHMATCHER_SOURCES
|
|
|
|
# Path matchers
|
|
|
|
pathmatcher/FSTreeMatcher.h
|
|
|
|
pathmatcher/IPathMatcher.h
|
|
|
|
pathmatcher/MultiMatcher.h
|
|
|
|
pathmatcher/RegexpMatcher.h
|
|
|
|
)
|
|
|
|
|
|
|
|
set(NET_SOURCES
|
2015-02-09 06:21:14 +05:30
|
|
|
# network stuffs
|
2016-05-28 23:24:17 +05:30
|
|
|
net/ByteArraySink.h
|
|
|
|
net/ChecksumValidator.h
|
|
|
|
net/Download.cpp
|
|
|
|
net/Download.h
|
|
|
|
net/FileSink.cpp
|
|
|
|
net/FileSink.h
|
|
|
|
net/HttpMetaCache.cpp
|
|
|
|
net/HttpMetaCache.h
|
|
|
|
net/MetaCacheSink.cpp
|
|
|
|
net/MetaCacheSink.h
|
2015-02-09 06:21:14 +05:30
|
|
|
net/NetAction.h
|
|
|
|
net/NetJob.cpp
|
2016-05-28 23:24:17 +05:30
|
|
|
net/NetJob.h
|
2015-02-09 06:21:14 +05:30
|
|
|
net/PasteUpload.cpp
|
2016-05-28 23:24:17 +05:30
|
|
|
net/PasteUpload.h
|
|
|
|
net/Sink.h
|
2015-02-09 06:21:14 +05:30
|
|
|
net/URLConstants.cpp
|
2016-05-28 23:24:17 +05:30
|
|
|
net/URLConstants.h
|
|
|
|
net/Validator.h
|
2016-04-14 04:53:54 +05:30
|
|
|
)
|
2015-02-09 06:21:14 +05:30
|
|
|
|
2016-04-14 04:53:54 +05:30
|
|
|
# Game launch logic
|
|
|
|
set(LAUNCH_SOURCES
|
2015-07-21 06:08:15 +05:30
|
|
|
launch/steps/PostLaunchCommand.cpp
|
|
|
|
launch/steps/PostLaunchCommand.h
|
|
|
|
launch/steps/PreLaunchCommand.cpp
|
|
|
|
launch/steps/PreLaunchCommand.h
|
|
|
|
launch/steps/TextPrint.cpp
|
|
|
|
launch/steps/TextPrint.h
|
|
|
|
launch/steps/Update.cpp
|
|
|
|
launch/steps/Update.h
|
|
|
|
launch/LaunchStep.cpp
|
|
|
|
launch/LaunchStep.h
|
|
|
|
launch/LaunchTask.cpp
|
|
|
|
launch/LaunchTask.h
|
2016-08-19 01:01:37 +05:30
|
|
|
launch/LogModel.cpp
|
|
|
|
launch/LogModel.h
|
2016-04-14 04:53:54 +05:30
|
|
|
)
|
2015-07-10 04:41:06 +05:30
|
|
|
|
2016-04-14 04:53:54 +05:30
|
|
|
# Old update system
|
|
|
|
set(UPDATE_SOURCES
|
2015-02-09 06:21:14 +05:30
|
|
|
updater/GoUpdate.h
|
|
|
|
updater/GoUpdate.cpp
|
|
|
|
updater/UpdateChecker.h
|
|
|
|
updater/UpdateChecker.cpp
|
|
|
|
updater/DownloadTask.h
|
|
|
|
updater/DownloadTask.cpp
|
2016-04-14 04:53:54 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
add_unit_test(UpdateChecker
|
|
|
|
SOURCES updater/UpdateChecker_test.cpp
|
|
|
|
LIBS MultiMC_logic
|
|
|
|
DATA updater/testdata
|
|
|
|
)
|
|
|
|
|
|
|
|
add_unit_test(DownloadTask
|
|
|
|
SOURCES updater/DownloadTask_test.cpp
|
|
|
|
LIBS MultiMC_logic
|
|
|
|
DATA updater/testdata
|
|
|
|
)
|
2015-02-09 06:21:14 +05:30
|
|
|
|
2016-04-14 04:53:54 +05:30
|
|
|
# Rarely used notifications
|
|
|
|
set(NOTIFICATIONS_SOURCES
|
2015-02-09 06:21:14 +05:30
|
|
|
# Notifications - short warning messages
|
|
|
|
notifications/NotificationChecker.h
|
|
|
|
notifications/NotificationChecker.cpp
|
2016-04-14 04:53:54 +05:30
|
|
|
)
|
2015-02-09 06:21:14 +05:30
|
|
|
|
2016-04-14 04:53:54 +05:30
|
|
|
# Backend for the news bar... there's usually no news.
|
|
|
|
set(NEWS_SOURCES
|
2015-02-09 06:21:14 +05:30
|
|
|
# News System
|
|
|
|
news/NewsChecker.h
|
|
|
|
news/NewsChecker.cpp
|
|
|
|
news/NewsEntry.h
|
|
|
|
news/NewsEntry.cpp
|
2016-04-14 04:53:54 +05:30
|
|
|
)
|
2015-02-09 06:21:14 +05:30
|
|
|
|
2016-05-03 21:19:56 +05:30
|
|
|
# Icon interface
|
|
|
|
set(ICONS_SOURCES
|
|
|
|
# News System
|
|
|
|
icons/IIconList.h
|
|
|
|
icons/IIconList.cpp
|
|
|
|
)
|
|
|
|
|
2016-04-14 04:53:54 +05:30
|
|
|
# Minecraft services status checker
|
|
|
|
set(STATUS_SOURCES
|
2015-02-09 06:21:14 +05:30
|
|
|
# Status system
|
|
|
|
status/StatusChecker.h
|
|
|
|
status/StatusChecker.cpp
|
2016-04-14 04:53:54 +05:30
|
|
|
)
|
2015-02-09 06:21:14 +05:30
|
|
|
|
2016-04-14 04:53:54 +05:30
|
|
|
# Support for Minecraft instances and launch
|
|
|
|
set(MINECRAFT_SOURCES
|
2015-02-09 06:21:14 +05:30
|
|
|
# Minecraft support
|
2016-04-14 04:53:54 +05:30
|
|
|
minecraft/auth/AuthSession.h
|
|
|
|
minecraft/auth/AuthSession.cpp
|
|
|
|
minecraft/auth/MojangAccountList.h
|
|
|
|
minecraft/auth/MojangAccountList.cpp
|
|
|
|
minecraft/auth/MojangAccount.h
|
|
|
|
minecraft/auth/MojangAccount.cpp
|
|
|
|
minecraft/auth/YggdrasilTask.h
|
|
|
|
minecraft/auth/YggdrasilTask.cpp
|
|
|
|
minecraft/auth/flows/AuthenticateTask.h
|
|
|
|
minecraft/auth/flows/AuthenticateTask.cpp
|
|
|
|
minecraft/auth/flows/RefreshTask.cpp
|
|
|
|
minecraft/auth/flows/RefreshTask.cpp
|
|
|
|
minecraft/auth/flows/ValidateTask.h
|
|
|
|
minecraft/auth/flows/ValidateTask.cpp
|
2017-07-24 12:31:37 +05:30
|
|
|
minecraft/update/AssetUpdateTask.h
|
|
|
|
minecraft/update/AssetUpdateTask.cpp
|
|
|
|
minecraft/update/FMLLibrariesTask.cpp
|
|
|
|
minecraft/update/FMLLibrariesTask.h
|
|
|
|
minecraft/update/FoldersTask.cpp
|
|
|
|
minecraft/update/FoldersTask.h
|
|
|
|
minecraft/update/LibrariesTask.cpp
|
|
|
|
minecraft/update/LibrariesTask.h
|
2016-11-15 07:21:22 +05:30
|
|
|
minecraft/launch/ClaimAccount.cpp
|
|
|
|
minecraft/launch/ClaimAccount.h
|
2016-07-23 17:06:31 +05:30
|
|
|
minecraft/launch/CreateServerResourcePacksFolder.cpp
|
|
|
|
minecraft/launch/CreateServerResourcePacksFolder.h
|
2016-04-10 21:13:41 +05:30
|
|
|
minecraft/launch/ModMinecraftJar.cpp
|
|
|
|
minecraft/launch/ModMinecraftJar.h
|
2016-06-16 05:50:23 +05:30
|
|
|
minecraft/launch/DirectJavaLaunch.cpp
|
|
|
|
minecraft/launch/DirectJavaLaunch.h
|
|
|
|
minecraft/launch/ExtractNatives.cpp
|
|
|
|
minecraft/launch/ExtractNatives.h
|
|
|
|
minecraft/launch/LauncherPartLaunch.cpp
|
|
|
|
minecraft/launch/LauncherPartLaunch.h
|
|
|
|
minecraft/launch/PrintInstanceInfo.cpp
|
|
|
|
minecraft/launch/PrintInstanceInfo.h
|
2017-09-17 02:39:05 +05:30
|
|
|
minecraft/legacy/LegacyModList.h
|
|
|
|
minecraft/legacy/LegacyModList.cpp
|
|
|
|
minecraft/legacy/LegacyInstance.h
|
|
|
|
minecraft/legacy/LegacyInstance.cpp
|
2017-09-26 17:08:34 +05:30
|
|
|
minecraft/legacy/LegacyUpgradeTask.h
|
|
|
|
minecraft/legacy/LegacyUpgradeTask.cpp
|
2015-02-09 06:21:14 +05:30
|
|
|
minecraft/GradleSpecifier.h
|
2017-07-24 12:31:37 +05:30
|
|
|
minecraft/MinecraftInstance.cpp
|
|
|
|
minecraft/MinecraftInstance.h
|
2017-11-05 03:25:25 +05:30
|
|
|
minecraft/LaunchProfile.cpp
|
|
|
|
minecraft/LaunchProfile.h
|
2017-11-11 06:08:31 +05:30
|
|
|
minecraft/Component.cpp
|
|
|
|
minecraft/Component.h
|
2017-10-12 02:34:24 +05:30
|
|
|
minecraft/ComponentList.cpp
|
|
|
|
minecraft/ComponentList.h
|
2017-11-11 06:08:31 +05:30
|
|
|
minecraft/ComponentUpdateTask.cpp
|
|
|
|
minecraft/ComponentUpdateTask.h
|
|
|
|
minecraft/MinecraftLoadAndCheck.h
|
|
|
|
minecraft/MinecraftLoadAndCheck.cpp
|
2017-07-24 12:31:37 +05:30
|
|
|
minecraft/MinecraftUpdate.h
|
|
|
|
minecraft/MinecraftUpdate.cpp
|
2016-02-28 02:32:56 +05:30
|
|
|
minecraft/MojangVersionFormat.cpp
|
|
|
|
minecraft/MojangVersionFormat.h
|
2016-03-07 06:31:28 +05:30
|
|
|
minecraft/Rule.cpp
|
|
|
|
minecraft/Rule.h
|
2017-07-24 12:31:37 +05:30
|
|
|
minecraft/OneSixVersionFormat.cpp
|
|
|
|
minecraft/OneSixVersionFormat.h
|
2015-02-09 06:21:14 +05:30
|
|
|
minecraft/OpSys.cpp
|
|
|
|
minecraft/OpSys.h
|
|
|
|
minecraft/ParseUtils.cpp
|
|
|
|
minecraft/ParseUtils.h
|
|
|
|
minecraft/ProfileUtils.cpp
|
|
|
|
minecraft/ProfileUtils.h
|
2016-03-07 06:31:28 +05:30
|
|
|
minecraft/Library.cpp
|
|
|
|
minecraft/Library.h
|
|
|
|
minecraft/MojangDownloadInfo.h
|
2015-02-09 06:21:14 +05:30
|
|
|
minecraft/VersionFile.cpp
|
|
|
|
minecraft/VersionFile.h
|
|
|
|
minecraft/VersionFilterData.h
|
|
|
|
minecraft/VersionFilterData.cpp
|
|
|
|
minecraft/Mod.h
|
|
|
|
minecraft/Mod.cpp
|
|
|
|
minecraft/ModList.h
|
|
|
|
minecraft/ModList.cpp
|
2015-08-19 04:40:17 +05:30
|
|
|
minecraft/World.h
|
|
|
|
minecraft/World.cpp
|
|
|
|
minecraft/WorldList.h
|
|
|
|
minecraft/WorldList.cpp
|
2015-02-09 06:21:14 +05:30
|
|
|
|
2017-04-22 22:21:04 +05:30
|
|
|
# Flame
|
|
|
|
minecraft/flame/PackManifest.h
|
|
|
|
minecraft/flame/PackManifest.cpp
|
|
|
|
minecraft/flame/FileResolvingTask.h
|
|
|
|
minecraft/flame/FileResolvingTask.cpp
|
2017-04-20 08:52:04 +05:30
|
|
|
|
2016-04-14 04:53:54 +05:30
|
|
|
# Assets
|
|
|
|
minecraft/AssetsUtils.h
|
|
|
|
minecraft/AssetsUtils.cpp
|
2015-02-09 06:21:14 +05:30
|
|
|
|
2016-04-14 04:53:54 +05:30
|
|
|
# Forge and all things forge related
|
|
|
|
minecraft/forge/ForgeXzDownload.h
|
|
|
|
minecraft/forge/ForgeXzDownload.cpp
|
2017-03-13 03:49:45 +05:30
|
|
|
|
|
|
|
# Skin upload utilities
|
2016-05-13 02:21:25 +05:30
|
|
|
minecraft/SkinUpload.cpp
|
|
|
|
minecraft/SkinUpload.h
|
|
|
|
)
|
2016-04-14 04:53:54 +05:30
|
|
|
|
|
|
|
add_unit_test(GradleSpecifier
|
|
|
|
SOURCES minecraft/GradleSpecifier_test.cpp
|
|
|
|
LIBS MultiMC_logic
|
|
|
|
)
|
|
|
|
|
|
|
|
add_unit_test(MojangVersionFormat
|
|
|
|
SOURCES minecraft/MojangVersionFormat_test.cpp
|
|
|
|
LIBS MultiMC_logic
|
|
|
|
DATA minecraft/testdata
|
|
|
|
)
|
|
|
|
|
|
|
|
add_unit_test(Library
|
|
|
|
SOURCES minecraft/Library_test.cpp
|
|
|
|
LIBS MultiMC_logic
|
|
|
|
)
|
|
|
|
|
|
|
|
# FIXME: shares data with FileSystem test
|
|
|
|
add_unit_test(ModList
|
|
|
|
SOURCES minecraft/ModList_test.cpp
|
|
|
|
DATA testdata
|
|
|
|
LIBS MultiMC_logic
|
|
|
|
)
|
|
|
|
|
|
|
|
add_unit_test(ParseUtils
|
|
|
|
SOURCES minecraft/ParseUtils_test.cpp
|
|
|
|
LIBS MultiMC_logic
|
|
|
|
)
|
|
|
|
|
|
|
|
# the screenshots feature
|
|
|
|
set(SCREENSHOTS_SOURCES
|
2015-02-09 06:21:14 +05:30
|
|
|
screenshots/Screenshot.h
|
|
|
|
screenshots/ImgurUpload.h
|
|
|
|
screenshots/ImgurUpload.cpp
|
|
|
|
screenshots/ImgurAlbumCreation.h
|
|
|
|
screenshots/ImgurAlbumCreation.cpp
|
2016-04-14 04:53:54 +05:30
|
|
|
)
|
2015-02-09 06:21:14 +05:30
|
|
|
|
2016-04-14 04:53:54 +05:30
|
|
|
set(TASKS_SOURCES
|
2015-02-09 06:21:14 +05:30
|
|
|
# Tasks
|
|
|
|
tasks/Task.h
|
|
|
|
tasks/Task.cpp
|
|
|
|
tasks/SequentialTask.h
|
|
|
|
tasks/SequentialTask.cpp
|
2016-04-14 04:53:54 +05:30
|
|
|
)
|
2015-02-09 06:21:14 +05:30
|
|
|
|
2016-04-14 04:53:54 +05:30
|
|
|
set(SETTINGS_SOURCES
|
2015-02-09 06:21:14 +05:30
|
|
|
# Settings
|
|
|
|
settings/INIFile.cpp
|
|
|
|
settings/INIFile.h
|
|
|
|
settings/INISettingsObject.cpp
|
|
|
|
settings/INISettingsObject.h
|
|
|
|
settings/OverrideSetting.cpp
|
|
|
|
settings/OverrideSetting.h
|
2015-05-04 04:50:48 +05:30
|
|
|
settings/PassthroughSetting.cpp
|
|
|
|
settings/PassthroughSetting.h
|
2015-02-09 06:21:14 +05:30
|
|
|
settings/Setting.cpp
|
|
|
|
settings/Setting.h
|
|
|
|
settings/SettingsObject.cpp
|
|
|
|
settings/SettingsObject.h
|
2016-04-14 04:53:54 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
add_unit_test(INIFile
|
|
|
|
SOURCES settings/INIFile_test.cpp
|
|
|
|
LIBS MultiMC_logic
|
|
|
|
)
|
2015-02-09 06:21:14 +05:30
|
|
|
|
2016-04-14 04:53:54 +05:30
|
|
|
set(JAVA_SOURCES
|
2015-02-09 06:21:14 +05:30
|
|
|
# Java related code
|
2016-04-10 21:13:41 +05:30
|
|
|
java/launch/CheckJava.cpp
|
|
|
|
java/launch/CheckJava.h
|
2015-02-09 06:21:14 +05:30
|
|
|
java/JavaChecker.h
|
|
|
|
java/JavaChecker.cpp
|
|
|
|
java/JavaCheckerJob.h
|
|
|
|
java/JavaCheckerJob.cpp
|
2016-01-02 05:05:54 +05:30
|
|
|
java/JavaInstall.h
|
|
|
|
java/JavaInstall.cpp
|
|
|
|
java/JavaInstallList.h
|
|
|
|
java/JavaInstallList.cpp
|
|
|
|
java/JavaUtils.h
|
|
|
|
java/JavaUtils.cpp
|
|
|
|
java/JavaVersion.h
|
|
|
|
java/JavaVersion.cpp
|
2016-04-14 04:53:54 +05:30
|
|
|
)
|
2015-02-09 06:21:14 +05:30
|
|
|
|
2016-04-14 04:53:54 +05:30
|
|
|
add_unit_test(JavaVersion
|
|
|
|
SOURCES java/JavaVersion_test.cpp
|
|
|
|
LIBS MultiMC_logic
|
|
|
|
)
|
2015-02-09 06:21:14 +05:30
|
|
|
|
2016-04-14 04:53:54 +05:30
|
|
|
set(TRANSLATIONS_SOURCES
|
2016-12-05 06:59:08 +05:30
|
|
|
translations/TranslationsModel.h
|
|
|
|
translations/TranslationsModel.cpp
|
2016-04-14 04:53:54 +05:30
|
|
|
)
|
2015-02-09 06:21:14 +05:30
|
|
|
|
2016-04-14 04:53:54 +05:30
|
|
|
set(TOOLS_SOURCES
|
2015-02-09 06:21:14 +05:30
|
|
|
# Tools
|
|
|
|
tools/BaseExternalTool.cpp
|
|
|
|
tools/BaseExternalTool.h
|
|
|
|
tools/BaseProfiler.cpp
|
|
|
|
tools/BaseProfiler.h
|
|
|
|
tools/JProfiler.cpp
|
|
|
|
tools/JProfiler.h
|
|
|
|
tools/JVisualVM.cpp
|
|
|
|
tools/JVisualVM.h
|
|
|
|
tools/MCEditTool.cpp
|
|
|
|
tools/MCEditTool.h
|
2016-04-14 04:53:54 +05:30
|
|
|
)
|
2015-02-09 06:21:14 +05:30
|
|
|
|
2017-03-11 06:09:45 +05:30
|
|
|
set(META_SOURCES
|
|
|
|
# Metadata sources
|
2017-03-18 06:52:36 +05:30
|
|
|
meta/JsonFormat.cpp
|
|
|
|
meta/JsonFormat.h
|
2017-03-11 06:09:45 +05:30
|
|
|
meta/BaseEntity.cpp
|
|
|
|
meta/BaseEntity.h
|
|
|
|
meta/VersionList.cpp
|
|
|
|
meta/VersionList.h
|
|
|
|
meta/Version.cpp
|
|
|
|
meta/Version.h
|
|
|
|
meta/Index.cpp
|
|
|
|
meta/Index.h
|
2015-02-09 06:21:14 +05:30
|
|
|
)
|
2016-04-14 04:53:54 +05:30
|
|
|
|
2017-03-11 06:09:45 +05:30
|
|
|
add_unit_test(Index
|
|
|
|
SOURCES meta/Index_test.cpp
|
2016-04-14 04:53:54 +05:30
|
|
|
LIBS MultiMC_logic
|
|
|
|
)
|
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
################################ COMPILE ################################
|
|
|
|
|
2015-09-29 00:23:46 +05:30
|
|
|
# we need zlib
|
|
|
|
find_package(ZLIB REQUIRED)
|
2015-08-18 05:55:24 +05:30
|
|
|
|
2016-04-14 04:53:54 +05:30
|
|
|
set(LOGIC_SOURCES
|
|
|
|
${CORE_SOURCES}
|
|
|
|
${PATHMATCHER_SOURCES}
|
|
|
|
${NET_SOURCES}
|
|
|
|
${LAUNCH_SOURCES}
|
|
|
|
${UPDATE_SOURCES}
|
|
|
|
${NOTIFICATIONS_SOURCES}
|
|
|
|
${NEWS_SOURCES}
|
|
|
|
${STATUS_SOURCES}
|
|
|
|
${MINECRAFT_SOURCES}
|
|
|
|
${SCREENSHOTS_SOURCES}
|
|
|
|
${TASKS_SOURCES}
|
|
|
|
${SETTINGS_SOURCES}
|
|
|
|
${JAVA_SOURCES}
|
|
|
|
${TRANSLATIONS_SOURCES}
|
|
|
|
${TOOLS_SOURCES}
|
2017-03-11 06:09:45 +05:30
|
|
|
${META_SOURCES}
|
2016-05-03 21:19:56 +05:30
|
|
|
${ICONS_SOURCES}
|
2016-04-14 04:53:54 +05:30
|
|
|
)
|
|
|
|
|
2015-09-05 22:16:57 +05:30
|
|
|
add_library(MultiMC_logic SHARED ${LOGIC_SOURCES})
|
2015-09-29 00:23:46 +05:30
|
|
|
set_target_properties(MultiMC_logic PROPERTIES CXX_VISIBILITY_PRESET hidden VISIBILITY_INLINES_HIDDEN 1)
|
2015-09-23 04:51:19 +05:30
|
|
|
|
2015-09-05 22:16:57 +05:30
|
|
|
generate_export_header(MultiMC_logic)
|
2015-02-09 06:21:14 +05:30
|
|
|
|
|
|
|
# Link
|
2017-09-27 19:09:13 +05:30
|
|
|
target_link_libraries(MultiMC_logic xz-embedded MultiMC_unpack200 systeminfo MultiMC_quazip MultiMC_classparser ${NBT_NAME} ${ZLIB_LIBRARIES})
|
2016-04-10 07:59:29 +05:30
|
|
|
qt5_use_modules(MultiMC_logic Core Xml Network Concurrent)
|
2015-09-05 22:16:57 +05:30
|
|
|
|
2015-09-29 00:23:46 +05:30
|
|
|
# Mark and export headers
|
|
|
|
target_include_directories(MultiMC_logic PUBLIC "${CMAKE_CURRENT_BINARY_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}" PRIVATE "${ZLIB_INCLUDE_DIRS}")
|