-rw-r--r-- | Vars.make | 16 | ||||
-rw-r--r-- | include.pro | 4 |
2 files changed, 18 insertions, 2 deletions
@@ -17,2 +17,18 @@ endif +ifdef CONFIG_TARGET_X86 + PLATFORM=x86-linux +endif +ifdef CONFIG_TARGET_SHARP + PLATFORM=sharp-linux +endif +ifdef CONFIG_TARGET_IPAQ + PLATFORM=ipaq-linux +endif +ifdef CONFIG_TARGET_RAMSES + PLATFORM=ramses-linux +endif +ifdef CONFIG_TARGET_SIMPAD + PLATFORM=simpad-linux +endif + export QMAKE:=$(OPIEDIR)/qmake/qmake diff --git a/include.pro b/include.pro index 38294d4..3ba8776 100644 --- a/include.pro +++ b/include.pro @@ -76,4 +76,4 @@ QMAKE_LIBDIR += $(OPIEDIR)/lib -MOC_DIR=.moc/$$PLATFORM -OBJECTS_DIR=.obj/$$PLATFORM +MOC_DIR=.moc/$(PLATFORM) +OBJECTS_DIR=.obj/$(PLATFORM) |