summaryrefslogtreecommitdiffstats
path: root/src/opencsg.mk
diff options
context:
space:
mode:
authorMark Brand <mabrand@mabrand.nl>2013-04-02 20:08:55 (GMT)
committerMark Brand <mabrand@mabrand.nl>2013-04-02 20:09:27 (GMT)
commitba2106d3f0c236930129c7118ce8f669f170b38e (patch)
treed15df83a546ac4012ba6a405af330093bca4ed19 /src/opencsg.mk
parentb5c4371c80e1b38720f3ceab47140e5fbae2c051 (diff)
downloadmxe-ba2106d3f0c236930129c7118ce8f669f170b38e.zip
mxe-ba2106d3f0c236930129c7118ce8f669f170b38e.tar.gz
mxe-ba2106d3f0c236930129c7118ce8f669f170b38e.tar.bz2
adjust references to qmake (Qt 4)
Follow-up to previous commit.
Diffstat (limited to 'src/opencsg.mk')
-rw-r--r--src/opencsg.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/opencsg.mk b/src/opencsg.mk
index f29401c..cf3ab73 100644
--- a/src/opencsg.mk
+++ b/src/opencsg.mk
@@ -17,12 +17,12 @@ define $(PKG)_UPDATE
endef
define $(PKG)_BUILD
- cd '$(1)/src' && '$(TARGET)-qmake' src.pro
+ cd '$(1)/src' && '$(PREFIX)/$(TARGET)/qt/bin/qmake' src.pro
$(MAKE) -C '$(1)/src' -j '$(JOBS)'
$(INSTALL) -m644 '$(1)/include/opencsg.h' '$(PREFIX)/$(TARGET)/include/'
$(INSTALL) -m644 '$(1)/lib/libopencsg.a' '$(PREFIX)/$(TARGET)/lib/'
- cd '$(1)/example' && '$(TARGET)-qmake' example.pro
+ cd '$(1)/example' && '$(PREFIX)/$(TARGET)/qt/bin/qmake' example.pro
$(MAKE) -C '$(1)/example' -j '$(JOBS)'
$(INSTALL) -m755 '$(1)/example/release/opencsgexample.exe' '$(PREFIX)/$(TARGET)/bin/test-opencsg.exe'
endef