tanghai 15 vuotta sitten
commit
8a67d82205
3 muutettua tiedostoa jossa 14 lisäystä ja 0 poistoa
  1. 3 0
      .gitignore
  2. 3 0
      SConstruct
  3. 8 0
      src/SConscript

+ 3 - 0
.gitignore

@@ -0,0 +1,3 @@
+.cproject
+.project
+.pydevproject

+ 3 - 0
SConstruct

@@ -0,0 +1,3 @@
+env = DefaultEnvironment()
+
+Export('env')

+ 8 - 0
src/SConscript

@@ -0,0 +1,8 @@
+Import('env')
+
+subdirs = [
+	'experimental',
+]
+
+for subdir in subdirs:
+	SConscript('%s/%s/SConscript' % (env['srcroot'], x), build_dir=target_dir)