2015-09-29 00:23:46 +05:30
|
|
|
cmake_minimum_required(VERSION 3.1)
|
2013-01-11 06:55:40 +05:30
|
|
|
project(launcher Java)
|
|
|
|
find_package(Java 1.6 REQUIRED COMPONENTS Development)
|
|
|
|
|
|
|
|
include(UseJava)
|
2014-01-09 05:52:34 +05:30
|
|
|
set(CMAKE_JAVA_JAR_ENTRY_POINT org.multimc.EntryPoint)
|
2013-01-11 06:55:40 +05:30
|
|
|
set(CMAKE_JAVA_COMPILE_FLAGS -target 1.6 -source 1.6 -Xlint:deprecation -Xlint:unchecked)
|
|
|
|
|
|
|
|
set(SRC
|
2014-04-09 19:11:49 +05:30
|
|
|
# OSX things
|
|
|
|
org/simplericity/macify/eawt/Application.java
|
|
|
|
org/simplericity/macify/eawt/ApplicationAdapter.java
|
|
|
|
org/simplericity/macify/eawt/ApplicationEvent.java
|
|
|
|
org/simplericity/macify/eawt/ApplicationListener.java
|
|
|
|
org/simplericity/macify/eawt/DefaultApplication.java
|
2014-01-09 05:52:34 +05:30
|
|
|
|
2014-04-09 19:11:49 +05:30
|
|
|
# legacy applet wrapper thing.
|
|
|
|
# The launcher has to be there for silly FML/Forge relauncher.
|
|
|
|
net/minecraft/Launcher.java
|
2015-08-15 03:00:12 +05:30
|
|
|
org/multimc/LegacyFrame.java
|
2013-01-11 06:55:40 +05:30
|
|
|
|
2014-04-09 19:11:49 +05:30
|
|
|
# onesix launcher
|
|
|
|
org/multimc/onesix/OneSixLauncher.java
|
2014-01-09 05:52:34 +05:30
|
|
|
|
2014-04-09 19:11:49 +05:30
|
|
|
# generic launcher
|
|
|
|
org/multimc/EntryPoint.java
|
|
|
|
org/multimc/Launcher.java
|
|
|
|
org/multimc/ParseException.java
|
|
|
|
org/multimc/Utils.java
|
2015-08-15 03:00:12 +05:30
|
|
|
org/multimc/IconLoader.java
|
2014-01-09 05:52:34 +05:30
|
|
|
)
|
|
|
|
add_jar(NewLaunch ${SRC})
|
2014-01-08 05:57:40 +05:30
|
|
|
|