summaryrefslogtreecommitdiff
path: root/src/shared
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2013-11-11 23:19:54 +0100
committerTannin <devnull@localhost>2013-11-11 23:19:54 +0100
commit75475a7984466afd1cf77f2e4a9f722c0a859404 (patch)
tree77cbca3ffc277c24707c28b62081df4bdd7f2739 /src/shared
parent315ed6e41afb8ddd753fed9c8d0163cdb7c86831 (diff)
- started qbs based project files (not functional yet)
- modlist will now updated immediately after a change throw the modinfo dialog - bugfix: configurator wasn't able to save after revision 137
Diffstat (limited to 'src/shared')
-rw-r--r--src/shared/shared.qbs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/shared/shared.qbs b/src/shared/shared.qbs
new file mode 100644
index 00000000..44b7539f
--- /dev/null
+++ b/src/shared/shared.qbs
@@ -0,0 +1,16 @@
+import qbs.base 1.0
+
+Application {
+ name: 'Shared'
+
+ Depends { name: 'cpp' }
+ Depends { name: 'BSAToolkit' }
+
+ cpp.defines: []
+ cpp.libraryPaths: [ qbs.getenv("BOOSTPATH") ]
+ cpp.includePaths: [ 'bsatk', qbs.getenv("BOOSTPATH") ]
+ files: [
+ '*.h',
+ '*.cpp'
+ ]
+}