git-svn-id: https://free-cad.svn.sourceforge.net/svnroot/free-cad/trunk@5000 e8eeb9e2-ec13-0410-a4a9-efa5cf37419d
61 lines
1.3 KiB
Plaintext
61 lines
1.3 KiB
Plaintext
MAJOR_VERSION = 1
|
|
VERSION = 1.0
|
|
#SUFFIX = "snapshot"
|
|
|
|
# Do not change this line
|
|
CONFIG += qt
|
|
|
|
# Chose one of the following two lines to configure the build
|
|
|
|
#CONFIG += release
|
|
#CONFIG += debug
|
|
CONFIG += debug_and_release
|
|
|
|
# Configuration for MacOS X
|
|
macx {
|
|
# Using gcc
|
|
QMAKESPEC=macx-g++
|
|
# uncoment this line if you want use xcode
|
|
# QMAKESPEC=macx-xcode
|
|
}
|
|
|
|
CONFIG(debug, debug|release) {
|
|
unix {
|
|
TARGET = $$join(TARGET,,,_debug)
|
|
}
|
|
else: TARGET = $$join(TARGET,,,d)
|
|
|
|
MOC_DIR = ./debug
|
|
OBJECTS_DIR = ./debug
|
|
UI_DIR = ./debug
|
|
RCC_DIR = ./debug
|
|
}
|
|
|
|
CONFIG(release, debug|release) {
|
|
MOC_DIR = ./release
|
|
OBJECTS_DIR = ./release
|
|
UI_DIR = ./release
|
|
RCC_DIR = ./release
|
|
}
|
|
|
|
# Chose one of the following two lines to configure the build
|
|
#LIB_CONFIG = staticlib
|
|
LIB_CONFIG = dll
|
|
|
|
QIISTASKPANELLIB = iistaskpanel
|
|
|
|
CONFIG(debug, debug|release) {
|
|
unix: QIISTASKPANELLIB = $$join(QIISTASKPANELLIB,,,_debug)
|
|
else: QIISTASKPANELLIB = $$join(QIISTASKPANELLIB,,,d)
|
|
}
|
|
|
|
contains(LIB_CONFIG, staticlib) {
|
|
DEFINES += QIIS_STATICLIB
|
|
} else {
|
|
DEFINES += QIIS_SHAREDLIB
|
|
win32 {
|
|
QIISTASKPANELLIB = $$join(QIISTASKPANELLIB,,,$$MAJOR_VERSION)
|
|
}
|
|
}
|
|
|