From 75475a7984466afd1cf77f2e4a9f722c0a859404 Mon Sep 17 00:00:00 2001 From: Tannin Date: Mon, 11 Nov 2013 23:19:54 +0100 Subject: - 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 --- src/shared/shared.qbs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/shared/shared.qbs (limited to 'src/shared') 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' + ] +} -- cgit v1.3.1