aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/ib
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@petroules.com>2014-04-07 14:48:24 -0400
committerJake Petroules <jake.petroules@petroules.com>2014-04-14 15:44:22 +0200
commit661de9d74ee8e74dbe85a5c52563094f63ee03c0 (patch)
treeb992ccb3092d077617f8024ba22abaee5f13730f /share/qbs/modules/ib
parent3adab080a030a841dcf096221a1317d951e08e4e (diff)
Move several JS files in the cpp module to imports.
All of these files are generically useful and not specific to C++. - BundleTools/DarwinTools are useful on OS X in general and are used by both the C++ and Interface Builder modules. PathTools also uses DarwinTools. - PathTools is currently only used by the C++ module but contains general filename functions that can be shared across multiple native language modules, like C++, Go, etc. - WindowsUtils contains functions general to the Windows OS. These imports should not yet be documented as further refactoring is necessary. Change-Id: I503773af268eabf8a77ebfc8a5809b9ddcad7af2 Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'share/qbs/modules/ib')
-rw-r--r--share/qbs/modules/ib/IBModule.qbs4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/qbs/modules/ib/IBModule.qbs b/share/qbs/modules/ib/IBModule.qbs
index 21117103d..b94e6bb57 100644
--- a/share/qbs/modules/ib/IBModule.qbs
+++ b/share/qbs/modules/ib/IBModule.qbs
@@ -1,10 +1,10 @@
import qbs 1.0
+import qbs.BundleTools
+import qbs.DarwinTools
import qbs.FileInfo
import qbs.ModUtils
import qbs.Process
import qbs.PropertyList
-import "../cpp/bundle-tools.js" as BundleTools
-import "../cpp/darwin-tools.js" as DarwinTools
Module {
condition: qbs.hostOS.contains("darwin") && qbs.targetOS.contains("darwin")