diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-07-15 14:39:20 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-07-15 14:39:20 (GMT) |
commit | 14160d248a0f36416e84ad3e92f78226e5759ace (patch) | |
tree | 2d1aa018617abe5b6ae53a61725e81864cb7e027 /mingw-cross-env.pri | |
parent | 1b38030f7e243c4eeb288d07084a99ff1e616e85 (diff) |
put obj files in separate dir during mingw win32 cross compilation
Diffstat (limited to 'mingw-cross-env.pri')
-rw-r--r-- | mingw-cross-env.pri | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mingw-cross-env.pri b/mingw-cross-env.pri index b0735a2..a1f3cb0 100644 --- a/mingw-cross-env.pri +++ b/mingw-cross-env.pri @@ -10,4 +10,17 @@ CONFIG(mingw-cross-env) { LIBS += mingw-cross-env/lib/libmpfr.a LIBS += mingw-cross-env/lib/libCGAL.a QMAKE_CXXFLAGS += -fpermissive + + Release:DESTDIR = release + Release:OBJECTS_DIR = release/objects + Release:MOC_DIR = release/moc + Release:RCC_DIR = release/rcc + Release:UI_DIR = release/ui + + Debug:DESTDIR = debug + Debug:OBJECTS_DIR = debug/objects + Debug:MOC_DIR = debug/moc + Debug:RCC_DIR = debug/rcc + Debug:UI_DIR = debug/ui } + |