From b711031e80a10485cfe57c960a71bf1f4ac9eb5e Mon Sep 17 00:00:00 2001 From: oakes Date: Tue, 31 Dec 2013 22:29:57 -0500 Subject: [PATCH] Remove platform-specific projects --- android/project.clj | 6 ------ android/src/play_clj/native.clj | 1 - desktop/project.clj | 8 -------- desktop/src/play_clj/native.clj | 1 - ios/project.clj | 6 ------ ios/src/play_clj/native.clj | 1 - common/project.clj => project.clj | 2 +- {common/src => src}/play_clj/core.clj | 0 {common/src => src}/play_clj/core_2d.clj | 0 {common/src => src}/play_clj/core_global.clj | 0 {common/src => src}/play_clj/core_render.clj | 0 {common/src => src}/play_clj/utils.clj | 0 12 files changed, 1 insertion(+), 24 deletions(-) delete mode 100644 android/project.clj delete mode 100644 android/src/play_clj/native.clj delete mode 100644 desktop/project.clj delete mode 100644 desktop/src/play_clj/native.clj delete mode 100644 ios/project.clj delete mode 100644 ios/src/play_clj/native.clj rename common/project.clj => project.clj (75%) rename {common/src => src}/play_clj/core.clj (100%) rename {common/src => src}/play_clj/core_2d.clj (100%) rename {common/src => src}/play_clj/core_global.clj (100%) rename {common/src => src}/play_clj/core_render.clj (100%) rename {common/src => src}/play_clj/utils.clj (100%) diff --git a/android/project.clj b/android/project.clj deleted file mode 100644 index 3295004..0000000 --- a/android/project.clj +++ /dev/null @@ -1,6 +0,0 @@ -(defproject play-clj-android "0.1.0-SNAPSHOT" - :description "Library for making Android games" - :license {:name "Public Domain" - :url "http://unlicense.org/UNLICENSE"} - :dependencies [[com.badlogicgames.gdx/gdx-backend-android "0.9.9"] - [play-clj "0.1.0-SNAPSHOT"]]) diff --git a/android/src/play_clj/native.clj b/android/src/play_clj/native.clj deleted file mode 100644 index b47346f..0000000 --- a/android/src/play_clj/native.clj +++ /dev/null @@ -1 +0,0 @@ -(ns play-clj.native) diff --git a/desktop/project.clj b/desktop/project.clj deleted file mode 100644 index 3c2bf3f..0000000 --- a/desktop/project.clj +++ /dev/null @@ -1,8 +0,0 @@ -(defproject play-clj-desktop "0.1.0-SNAPSHOT" - :description "Library for making desktop games" - :license {:name "Public Domain" - :url "http://unlicense.org/UNLICENSE"} - :dependencies [[com.badlogicgames.gdx/gdx-backend-lwjgl "0.9.9"] - [com.badlogicgames.gdx/gdx-platform "0.9.9" - :classifier "natives-desktop"] - [play-clj "0.1.0-SNAPSHOT"]]) diff --git a/desktop/src/play_clj/native.clj b/desktop/src/play_clj/native.clj deleted file mode 100644 index b47346f..0000000 --- a/desktop/src/play_clj/native.clj +++ /dev/null @@ -1 +0,0 @@ -(ns play-clj.native) diff --git a/ios/project.clj b/ios/project.clj deleted file mode 100644 index cb00934..0000000 --- a/ios/project.clj +++ /dev/null @@ -1,6 +0,0 @@ -(defproject play-clj-ios "0.1.0-SNAPSHOT" - :description "Library for making iOS games" - :license {:name "Public Domain" - :url "http://unlicense.org/UNLICENSE"} - :dependencies [[com.badlogicgames.gdx/gdx-backend-robovm "0.9.9"] - [play-clj "0.1.0-SNAPSHOT"]]) diff --git a/ios/src/play_clj/native.clj b/ios/src/play_clj/native.clj deleted file mode 100644 index b47346f..0000000 --- a/ios/src/play_clj/native.clj +++ /dev/null @@ -1 +0,0 @@ -(ns play-clj.native) diff --git a/common/project.clj b/project.clj similarity index 75% rename from common/project.clj rename to project.clj index 7a8f44f..9dc7b30 100644 --- a/common/project.clj +++ b/project.clj @@ -2,5 +2,5 @@ :description "Library for making cross-platform games" :license {:name "Public Domain" :url "http://unlicense.org/UNLICENSE"} - :dependencies [[com.badlogicgames.gdx/gdx "0.9.9" :use-resources true] + :dependencies [[com.badlogicgames.gdx/gdx "0.9.9"] [org.clojure/clojure "1.5.1"]]) diff --git a/common/src/play_clj/core.clj b/src/play_clj/core.clj similarity index 100% rename from common/src/play_clj/core.clj rename to src/play_clj/core.clj diff --git a/common/src/play_clj/core_2d.clj b/src/play_clj/core_2d.clj similarity index 100% rename from common/src/play_clj/core_2d.clj rename to src/play_clj/core_2d.clj diff --git a/common/src/play_clj/core_global.clj b/src/play_clj/core_global.clj similarity index 100% rename from common/src/play_clj/core_global.clj rename to src/play_clj/core_global.clj diff --git a/common/src/play_clj/core_render.clj b/src/play_clj/core_render.clj similarity index 100% rename from common/src/play_clj/core_render.clj rename to src/play_clj/core_render.clj diff --git a/common/src/play_clj/utils.clj b/src/play_clj/utils.clj similarity index 100% rename from common/src/play_clj/utils.clj rename to src/play_clj/utils.clj