Browse Source

Andere Allgemeine Projekte hinzugefügt

Kolja Strohm 7 years ago
parent
commit
0ee92874b3
8 changed files with 57 additions and 0 deletions
  1. 12 0
      .gitmodules
  2. 1 0
      Allgemein/Annimation Creator
  3. 1 0
      Allgemein/Network
  4. 11 0
      Allgemein/build.bat
  5. 1 0
      Allgemein/ksgScript
  6. 1 0
      Allgemein/sql
  7. 14 0
      build.bat
  8. 16 0
      build_client.bat

+ 12 - 0
.gitmodules

@@ -1,3 +1,15 @@
 [submodule "Allgemein/Framework"]
 	path = Allgemein/Framework
 	url = https://koljastrohm-games.com:3000/kolja/KSG-Framework.git
+[submodule ".\\Allgemein\\Annimation Creator"]
+	path = .\\Allgemein\\Annimation Creator
+	url = https://koljastrohm-games.com:3000/kolja/AnimationCreator.git
+[submodule ".\\Allgemein\\ksgScript"]
+	path = .\\Allgemein\\ksgScript
+	url = https://koljastrohm-games.com:3000/kolja/KSG-Script.git
+[submodule ".\\Allgemein\\sql"]
+	path = .\\Allgemein\\sql
+	url = https://koljastrohm-games.com:3000/kolja/KSG-SQL.git
+[submodule ".\\Allgemein\\Network"]
+	path = .\\Allgemein\\Network
+	url = https://koljastrohm-games.com:3000/kolja/KSG-Netzwerk.git

+ 1 - 0
Allgemein/Annimation Creator

@@ -0,0 +1 @@
+Subproject commit cd13451eeff458537095c37b2c2c274f89841a24

+ 1 - 0
Allgemein/Network

@@ -0,0 +1 @@
+Subproject commit cd97ab998dc4b37443a3a26031d5e3f3ba28eec6

+ 11 - 0
Allgemein/build.bat

@@ -0,0 +1,11 @@
+cd "Framework"
+call build.bat
+cd "../GSL"
+call build.bat
+cd "../ksgScript"
+call build.bat
+cd ../Network"
+call build.bat
+cd "../sql"
+call build.bat
+cd ".."

+ 1 - 0
Allgemein/ksgScript

@@ -0,0 +1 @@
+Subproject commit 1501d2924ed103fca05edbfc4a403fc59e35865c

+ 1 - 0
Allgemein/sql

@@ -0,0 +1 @@
+Subproject commit 4bb364634d9156a25ca8b421ca054850ed269c0d

+ 14 - 0
build.bat

@@ -0,0 +1,14 @@
+@echo off
+set /a startsek=(%time:~0,2%*60*60)+(%time:~3,2%*60)+%time:~6,2%
+
+cd "Allgemein"
+call build.bat
+cd "../Apps"
+call build.bat
+cd "../Spiele Platform"
+call build.bat
+
+set /a endsek=(%time:~0,2%*60*60)+(%time:~3,2%*60)+%time:~6,2%
+set /a timemins=(%endsek%-%startsek%)/60
+set /a timeseks=((%endsek%-%startsek%)-(%timemins%*60))
+echo Minuten: %timemins% --- Sekunden: %timeseks%

+ 16 - 0
build_client.bat

@@ -0,0 +1,16 @@
+@echo off
+set /a startsek=(%time:~0,2%*60*60)+(%time:~3,2%*60)+%time:~6,2%
+
+cd "Allgemein"
+call build.bat
+cd "../Spiele Platform/Klient"
+call build.bat
+cd ../SMP
+call build.bat
+cd ../Spiele/Klient
+call build.bat
+
+set /a endsek=(%time:~0,2%*60*60)+(%time:~3,2%*60)+%time:~6,2%
+set /a timemins=(%endsek%-%startsek%)/60
+set /a timeseks=((%endsek%-%startsek%)-(%timemins%*60))
+echo Minuten: %timemins% --- Sekunden: %timeseks%