summaryrefslogtreecommitdiff
path: root/src/organizer.qbs
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2013-11-18 20:17:14 +0100
committerTannin <devnull@localhost>2013-11-18 20:17:14 +0100
commitc6101e34e1e142a3442c3a4543ea22dabd31fa33 (patch)
tree0e737a47f5cec0afac715ae7f6e5fd1e5fb108b9 /src/organizer.qbs
parent75475a7984466afd1cf77f2e4a9f722c0a859404 (diff)
- archive.dll now supports querying the crc value of files
- esptk now determines if a esp is a dummy (without records) - hook.dll no longer creates a log file if noone wrote to it - nexus id and installtime columns are now hidden by default - modlist can now be refreshed without saving first (so plugins can replace the modlist.txt as a whole) - plugins can now query more details about virtualised files - added style options "plastique" and "cleanlooks" - "overwrite" is no longer listed with a creation time - a warning will now be displayed if the user has too many plugins active - a warning will now be displayed if mods with scripts have an installation order that doesn't match the corresponding esp load order - nmm importer now has select all/deselect all buttons - nmm importer no longer tries to unpack missing files from archives (won't work anyway) - initial support for importing from nmm 0.5 alpha - removed some broken warning suppresions - python runner now works with bundled python - extended qbs build system (still fails to build the main gui application) - implemented a nsis-based installer
Diffstat (limited to 'src/organizer.qbs')
-rw-r--r--src/organizer.qbs44
1 files changed, 32 insertions, 12 deletions
diff --git a/src/organizer.qbs b/src/organizer.qbs
index fdfb914c..2b7f45fc 100644
--- a/src/organizer.qbs
+++ b/src/organizer.qbs
@@ -3,21 +3,41 @@ import qbs.base 1.0
Application {
name: 'Organizer'
- Depends { name: 'Qt.core' }
- Depends { name: 'Qt.gui' }
- Depends { name: 'Qt.network' }
- Depends { name: 'Qt.declarative' }
- Depends { name: 'UIBase' }
+ Depends { name: "Qt"; submodules: ["core", "gui", "network", "declarative"] }
Depends { name: 'Shared' }
+ Depends { name: 'UIBase' }
Depends { name: 'cpp' }
- cpp.defines: []
- cpp.includePaths: [ '../shared', '../archive', '../uibase', qbs.getenv("BOOSTPATH") ]
+ cpp.defines: [ 'UNICODE', '_UNICODE' ]
+ cpp.libraryPaths: [ qbs.getenv('BOOSTPATH') + '/stage/lib' ]
+ cpp.includePaths: [ '../shared', '../archive', '../bsatk', '../esptk', '../uibase', qbs.getenv("BOOSTPATH") ]
// '../bsatk', '../esptk',
- files: [
- '*.cpp',
- '*.h',
- '*.ui'
- ]
+ 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