Main repository of MikuMikuStudio
Revisión | 259f49073493286ee3f865e5452adde754dc75df (tree) |
---|---|
Tiempo | 2014-02-22 01:13:20 |
Autor | Kazuhiko Kobayashi <kobayasi@pscn...> |
Commiter | Kazuhiko Kobayashi |
Add gdx native libraries.
@@ -1,7 +1,7 @@ | ||
1 | 1 | lazy val root = |
2 | 2 | (project.in(file(".")) |
3 | 3 | .settings(Common.settings: _*) |
4 | - .aggregate(engine, desktop/*, android*/, gdx, niftygui) | |
4 | + .aggregate(engine, desktop/*, android*/, gdx, niftygui, mms_gdx_natives_ios, mms_gdx_natives_android, mms_gdx_natives_desktop) | |
5 | 5 | ) |
6 | 6 | |
7 | 7 | lazy val engine = project |
@@ -14,6 +14,13 @@ lazy val gdx = project.dependsOn(engine) | ||
14 | 14 | |
15 | 15 | lazy val niftygui = project.dependsOn(engine) |
16 | 16 | |
17 | +lazy val mms_gdx_natives_ios = project.dependsOn(gdx) | |
18 | + | |
19 | +lazy val mms_gdx_natives_android = project.dependsOn(gdx) | |
20 | + | |
21 | +lazy val mms_gdx_natives_desktop = project.dependsOn(gdx) | |
22 | + | |
23 | + | |
17 | 24 | publishArtifact := false |
18 | 25 | |
19 | 26 | publishLocal := {} |
@@ -0,0 +1,9 @@ | ||
1 | +Common.settings | |
2 | + | |
3 | +name := "mms-gdx-natives-android" | |
4 | + | |
5 | +// disable publishing the main API jar | |
6 | +publishArtifact in (Compile, packageDoc) := false | |
7 | + | |
8 | +// disable publishing the main sources jar | |
9 | +publishArtifact in (Compile, packageSrc) := false | |
\ No newline at end of file |
@@ -0,0 +1,9 @@ | ||
1 | +Common.settings | |
2 | + | |
3 | +name := "mms-gdx-natives-desktop" | |
4 | + | |
5 | +// disable publishing the main API jar | |
6 | +publishArtifact in (Compile, packageDoc) := false | |
7 | + | |
8 | +// disable publishing the main sources jar | |
9 | +publishArtifact in (Compile, packageSrc) := false | |
\ No newline at end of file |
@@ -0,0 +1,9 @@ | ||
1 | +Common.settings | |
2 | + | |
3 | +name := "mms-gdx-natives-ios" | |
4 | + | |
5 | +// disable publishing the main API jar | |
6 | +publishArtifact in (Compile, packageDoc) := false | |
7 | + | |
8 | +// disable publishing the main sources jar | |
9 | +publishArtifact in (Compile, packageSrc) := false | |
\ No newline at end of file |
@@ -16,7 +16,7 @@ object Common { | ||
16 | 16 | <licenses> |
17 | 17 | <license> |
18 | 18 | <name>BSD-style</name> |
19 | - <url>http://www.opensource.org/licenses/bsd-license.php</url> | |
19 | + <url>https://raw.github.com/chototsu/MikuMikuStudio/master/LICENSE.txt</url> | |
20 | 20 | <distribution>repo</distribution> |
21 | 21 | </license> |
22 | 22 | <license> |