diff options
| author | Tannin <devnull@localhost> | 2014-04-05 15:36:42 +0200 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2014-04-05 15:36:42 +0200 |
| commit | cabed9b268c9f095d5e3b98a6797b0bcdcd38b1f (patch) | |
| tree | 454b03b0c5664e90fe586e7b39603e34a526d35b /src/organizer.qbs | |
| parent | 98e5e57a845541acddf519a81957261f58008cb9 (diff) | |
| parent | c017f4a0d50b67a44e276bd5ae8929ed3990c62c (diff) | |
Merge with branch1.1
Diffstat (limited to 'src/organizer.qbs')
| -rw-r--r-- | src/organizer.qbs | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/organizer.qbs b/src/organizer.qbs new file mode 100644 index 00000000..2b7f45fc --- /dev/null +++ b/src/organizer.qbs @@ -0,0 +1,43 @@ +import qbs.base 1.0
+
+Application {
+ name: 'Organizer'
+
+ Depends { name: "Qt"; submodules: ["core", "gui", "network", "declarative"] }
+ Depends { name: 'Shared' }
+ Depends { name: 'UIBase' }
+ Depends { name: 'cpp' }
+
+ cpp.defines: [ 'UNICODE', '_UNICODE' ]
+ cpp.libraryPaths: [ qbs.getenv('BOOSTPATH') + '/stage/lib' ]
+ cpp.includePaths: [ '../shared', '../archive', '../bsatk', '../esptk', '../uibase', qbs.getenv("BOOSTPATH") ]
+ // '../bsatk', '../esptk',
+
+ cpp.staticLibraries: [ 'shell32', 'user32', 'Version', 'shlwapi' ]
+ //LIBS += -lmo_shared -luibase -lshell32 -lole32 -luser32 -ladvapi32 -lgdi32 -lPsapi -lVersion -lbsatk -lshlwapi
+
+ Group {
+ name: 'Headers'
+ files: [ '*.h' ]
+ }
+
+ Group {
+ name: 'Sources'
+ files: [ '*.cpp' ]
+ }
+
+ Group {
+ name: 'UI Files'
+ files: [ '*.ui' ]
+ }
+
+ Group {
+ name: 'ESP Toolkit'
+ files: [ '../esptk/*.h', '../esptk/*.cpp' ]
+ }
+}
+
+// /nologo /c
+
+
+// /Zi -GR -W3
|
