• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Main repository of MikuMikuStudio


Commit MetaInfo

Revisión259f49073493286ee3f865e5452adde754dc75df (tree)
Tiempo2014-02-22 01:13:20
AutorKazuhiko Kobayashi <kobayasi@pscn...>
CommiterKazuhiko Kobayashi

Log Message

Add gdx native libraries.

Cambiar Resumen

Diferencia incremental

--- a/build.sbt
+++ b/build.sbt
@@ -1,7 +1,7 @@
11 lazy val root =
22 (project.in(file("."))
33 .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)
55 )
66
77 lazy val engine = project
@@ -14,6 +14,13 @@ lazy val gdx = project.dependsOn(engine)
1414
1515 lazy val niftygui = project.dependsOn(engine)
1616
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+
1724 publishArtifact := false
1825
1926 publishLocal := {}
--- /dev/null
+++ b/mms_gdx_natives_android/build.sbt
@@ -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
Binary files /dev/null and b/mms_gdx_natives_android/src/main/resources/libbulletjme.so differ
Binary files /dev/null and b/mms_gdx_natives_android/src/main/resources/libbulletjmeneon.so differ
Binary files /dev/null and b/mms_gdx_natives_android/src/main/resources/libgdx-bullet.so differ
--- /dev/null
+++ b/mms_gdx_natives_desktop/build.sbt
@@ -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
Binary files /dev/null and b/mms_gdx_natives_desktop/src/main/resources/gdx-bullet.dll differ
Binary files /dev/null and b/mms_gdx_natives_desktop/src/main/resources/gdx-bullet64.dll differ
Binary files /dev/null and b/mms_gdx_natives_desktop/src/main/resources/libgdx-bullet.dylib differ
Binary files /dev/null and b/mms_gdx_natives_desktop/src/main/resources/libgdx-bullet.so differ
Binary files /dev/null and b/mms_gdx_natives_desktop/src/main/resources/libgdx-bullet64.so differ
--- /dev/null
+++ b/mms_gdx_natives_ios/build.sbt
@@ -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
Binary files /dev/null and b/mms_gdx_natives_ios/src/main/resources/libgdx-bullet.a differ
--- a/project/Common.scala
+++ b/project/Common.scala
@@ -16,7 +16,7 @@ object Common {
1616 <licenses>
1717 <license>
1818 <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>
2020 <distribution>repo</distribution>
2121 </license>
2222 <license>