File size: 472 Bytes
a5ffdcd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #-------------------------------------------------
#
# Project created by QtCreator 2011-03-22T19:33:11
#
#-------------------------------------------------
TEMPLATE = subdirs
TARGET = libraries
SUBDIRS = \
lciconengine \
libdxfrw \
jwwlib
macx|win32|equals(build_muparser, "true")|!packagesExist(muparser){
message("Using bundled muparser lib")
SUBDIRS += muparser
}else{
message("Using external muparser lib")
}
|