fixed compilation on msvc 2017
parent
6d7d66175c
commit
6b68f4df03
|
@ -60,9 +60,9 @@ if sys.platform == 'win32':
|
|||
if '.dll' in plugin.__str__():
|
||||
installTargets += env.Install(os.path.join(distDir, 'plugins'), plugin)
|
||||
|
||||
compilerType = 'vc' + env['MSVC_VERSION'].replace('.', '')
|
||||
compilerType = 'vc141'
|
||||
archType = 'x64' if 'WIN64' in env['CXXFLAGS'] else 'i386'
|
||||
dllprefix = '#dependencies/lib/%s_%s' % (archType, compilerType[:-1])
|
||||
dllprefix = '#dependencies/lib'
|
||||
|
||||
if hasCollada:
|
||||
install(distDir, ['converter/mtsimport.exe'])
|
||||
|
@ -80,22 +80,18 @@ if sys.platform == 'win32':
|
|||
[ ('#' + os.path.join(includeDir, fname)) for fname in entry[2] ])
|
||||
for ver in hasPython:
|
||||
installAs(os.path.join(distDir, 'python/'+ver+'/mitsuba.pyd'), 'libpython/mitsuba_python' + ver + '.dll')
|
||||
install(distDir, ['Iex.dll', 'Half.dll','IlmThread.dll', 'Imath.dll','IlmImf.dll','zlib.dll',
|
||||
'libpng16.dll', 'jpeg62.dll', 'xerces-c_3_1.dll', 'glew32mx.dll', 'libfftw-3.3.dll'],
|
||||
install(distDir, ['Iex.dll', 'Half.dll','IlmThread.dll', 'Imath.dll','IlmImf.dll','zlib1.dll',
|
||||
'libpng16.dll', 'jpeg.dll', 'xerces-c_3_1.dll', 'glew32mx.dll', 'libfftw3-3.dll'],
|
||||
prefix=dllprefix)
|
||||
install(distDir, ['libcollada14dom24.dll'], dllprefix)
|
||||
for boostlib in ['python27', 'python32', 'python33', 'python34', 'system', 'filesystem', 'chrono', 'thread']:
|
||||
install(distDir, ['boost_%s-%s-mt-1_53.dll' % (boostlib, compilerType)], dllprefix)
|
||||
for boostlib in ['python27', 'python35', 'python36', 'system', 'filesystem', 'chrono', 'thread']:
|
||||
install(distDir, ['boost_%s-%s-mt-1_64.dll' % (boostlib, compilerType)], dllprefix)
|
||||
|
||||
installTargets += env.Install(distDir, '#data/windows/README.txt')
|
||||
|
||||
if 'REDIST_PATH' in env:
|
||||
install(distDir, ['libmmd.dll', 'libiomp5md.dll', 'svml_dispmd.dll'], prefix = env['REDIST_PATH'])
|
||||
|
||||
if hasQt:
|
||||
install(distDir, ['mtsgui/mtsgui.exe'])
|
||||
install(distDir, ['QtCore5.dll', 'QtGui5.dll', 'QtWidgets5.dll', 'QtXml5.dll',
|
||||
'QtNetwork5.dll', 'QtOpenGL5.dll', 'QtXmlPatterns5.dll'], prefix = env['QT5_LIBPATH'])
|
||||
install(distDir, ['Qt5Core.dll', 'Qt5Gui.dll', 'Qt5Widgets.dll', 'Qt5Xml.dll',
|
||||
'Qt5Network.dll', 'Qt5OpenGL.dll', 'Qt5XmlPatterns.dll'], prefix = env['QT5_LIBPATH'])
|
||||
elif sys.platform == 'darwin':
|
||||
for i in plugins:
|
||||
plugin = env.Install(os.path.join(distDir, 'plugins'), i)
|
||||
|
|
|
@ -1,35 +0,0 @@
|
|||
import os, sys
|
||||
|
||||
BUILDDIR = '#build/release'
|
||||
DISTDIR = '#dist'
|
||||
CXX = 'icpc'
|
||||
CC = 'icc'
|
||||
CXXFLAGS = ['-O3', '-Wall', '-g', '-pipe', '-O3', '-ipo', '-no-prec-div', '-xSSE3', '-fp-model', 'fast=2', '-openmp', '-mfpmath=sse', '-march=nocona', '-fno-math-errno', '-fomit-frame-pointer', '-DMTS_DEBUG', '-DSINGLE_PRECISION', '-DSPECTRUM_SAMPLES=3', '-DMTS_SSE', '-DMTS_HAS_COHERENT_RT', '-fopenmp', '-fvisibility=hidden', '-std=c++0x', '-wd2928', '-Qoption,cpp,--rvalue_ctor_is_not_copy_ctor']
|
||||
LINKFLAGS = []
|
||||
SHLINKFLAGS = ['-rdynamic', '-shared', '-fPIC', '-lstdc++']
|
||||
BASEINCLUDE = ['#include']
|
||||
BASELIB = ['dl', 'pthread', 'iomp5']
|
||||
EIGENINCLUDE = ['/usr/include/eigen3']
|
||||
OEXRINCLUDE = ['/usr/include/OpenEXR']
|
||||
OEXRLIB = ['Half', 'IlmImf', 'z']
|
||||
PNGLIB = ['png']
|
||||
JPEGLIB = ['jpeg']
|
||||
XERCESINCLUDE = []
|
||||
XERCESLIB = ['xerces-c']
|
||||
GLLIB = ['GL', 'GLU', 'GLEWmx', 'Xxf86vm', 'X11']
|
||||
GLFLAGS = ['-DGLEW_MX']
|
||||
BOOSTLIB = ['boost_system', 'boost_filesystem', 'boost_thread']
|
||||
COLLADAINCLUDE = ['/usr/include/collada-dom', '/usr/include/collada-dom/1.4']
|
||||
COLLADALIB = ['collada14dom', 'xml2']
|
||||
FFTWLIB = ['fftw3_threads', 'fftw3']
|
||||
|
||||
# The following runs a helper script to search for installed Python
|
||||
# packages that have a Boost Python library of matching version.
|
||||
# A Mitsuba binding library will be compiled for each such pair.
|
||||
# Alternatively, you could also specify the paths and libraries manually
|
||||
# using the variables PYTHON27INCLUDE, PYTHON27LIB, PYTHON27LIBDIR etc.
|
||||
|
||||
import sys, os
|
||||
sys.path.append(os.path.abspath('../data/scons'))
|
||||
from detect_python import detect_python
|
||||
locals().update(detect_python())
|
|
@ -1,39 +0,0 @@
|
|||
BUILDDIR = '#build/release'
|
||||
DISTDIR = '#dist'
|
||||
CXX = 'icl'
|
||||
CC = 'icl'
|
||||
LINK = 'xilink'
|
||||
CXXFLAGS = ['/nologo', '/O3', '/Qipo', '/QxSSE2', '/QaxSSE3,SSE4.2', '/fp:fast=2', '/D', 'WIN32', '/W3', '/Qdiag-disable:803' ,'/Qdiag-disable:2415', '/Qdiag-disable:2586', '/EHsc', '/GS-', '/MD', '/D', 'MTS_DEBUG', '/D', 'SINGLE_PRECISION', '/D', 'SPECTRUM_SAMPLES=3', '/D', 'MTS_SSE', '/D', 'MTS_HAS_COHERENT_RT', '/D', '_CONSOLE', '/D', 'OPENEXR_DLL', '/D', 'NDEBUG', '/Qopenmp']
|
||||
SHCXXFLAGS = CXXFLAGS
|
||||
TARGET_ARCH = 'x86'
|
||||
MSVC_VERSION = '10.0'
|
||||
INTEL_COMPILER = True
|
||||
LINKFLAGS = ['/nologo', '/SUBSYSTEM:CONSOLE', '/MACHINE:X86', '/FIXED:NO', '/OPT:REF', '/OPT:ICF', '/NODEFAULTLIB:LIBCMT', '/MANIFEST', '/Qdiag-disable:11024']
|
||||
BASEINCLUDE = ['#include', '#dependencies/include']
|
||||
BASELIB = ['msvcrt', 'ws2_32', 'Half']
|
||||
BASELIBDIR = ['#dependencies/lib/i386_vc10']
|
||||
OEXRINCLUDE = ['#dependencies/include/openexr']
|
||||
OEXRLIB = ['IlmImf', 'IlmThread', 'Iex', 'zlib']
|
||||
BOOSTLIB = ['boost_system-vc100-mt-1_53', 'boost_filesystem-vc100-mt-1_53', 'boost_thread-vc100-mt-1_53']
|
||||
COLLADAINCLUDE = ['#dependencies/include/collada-dom', '#dependencies/include/collada-dom/1.4']
|
||||
COLLADALIB = ['libcollada14dom24']
|
||||
XERCESLIB = ['xerces-c_3']
|
||||
PNGLIB = ['libpng16']
|
||||
JPEGLIB = ['jpeg']
|
||||
GLLIB = ['opengl32', 'glu32', 'glew32mx', 'gdi32', 'user32']
|
||||
GLFLAGS = ['/D', 'GLEW_MX']
|
||||
SHLIBPREFIX = 'lib'
|
||||
SHLIBSUFFIX = '.dll'
|
||||
LIBSUFFIX = '.lib'
|
||||
PROGSUFFIX = '.exe'
|
||||
PYTHON27LIB = ['boost_python27-vc100-mt-1_53', 'python27']
|
||||
PYTHON27INCLUDE = ['#dependencies/include/python27']
|
||||
PYTHON32LIB = ['boost_python32-vc100-mt-1_53', 'python32']
|
||||
PYTHON32INCLUDE = ['#dependencies/include/python32']
|
||||
PYTHON33LIB = ['boost_python33-vc100-mt-1_53', 'python33']
|
||||
PYTHON33INCLUDE = ['#dependencies/include/python33']
|
||||
PYTHON34LIB = ['boost_python34-vc100-mt-1_53', 'python34']
|
||||
PYTHON34INCLUDE = ['#dependencies/include/python34']
|
||||
QTINCLUDE = ['#dependencies/qt/include']
|
||||
QTDIR = '#dependencies/qt/i386_vc10'
|
||||
FFTWLIB = ['libfftw-3.3']
|
|
@ -1,37 +0,0 @@
|
|||
BUILDDIR = '#build/debug'
|
||||
DISTDIR = '#dist'
|
||||
CXX = 'cl'
|
||||
CC = 'cl'
|
||||
CXXFLAGS = ['/nologo', '/Od', '/Z7', '/fp:fast', '/arch:SSE2', '/D', 'WIN32', '/W3', '/EHsc', '/GS-', '/GL', '/MD', '/D', 'MTS_DEBUG', '/D', 'SINGLE_PRECISION', '/D', 'SPECTRUM_SAMPLES=3', '/D', 'MTS_SSE', '/D', 'MTS_HAS_COHERENT_RT', '/D', '_CONSOLE', '/D', 'DEBUG', '/D', 'OPENEXR_DLL', '/openmp']
|
||||
SHCXXFLAGS = CXXFLAGS
|
||||
TARGET_ARCH = 'x86'
|
||||
MSVC_VERSION = '10.0'
|
||||
LINKFLAGS = ['/nologo', '/SUBSYSTEM:CONSOLE', '/DEBUG', '/MACHINE:X86', '/FIXED:NO', '/OPT:REF', '/OPT:ICF', '/LTCG', '/NODEFAULTLIB:LIBCMT', '/MANIFEST']
|
||||
BASEINCLUDE = ['#include', '#dependencies/include']
|
||||
BASELIB = ['msvcrt', 'ws2_32', 'Half']
|
||||
BASELIBDIR = ['#dependencies/lib/i386_vc10']
|
||||
OEXRINCLUDE = ['#dependencies/include/openexr']
|
||||
OEXRLIB = ['IlmImf', 'IlmThread', 'Iex', 'zlib']
|
||||
BOOSTLIB = ['boost_system-vc100-mt-1_53', 'boost_filesystem-vc100-mt-1_53', 'boost_thread-vc100-mt-1_53']
|
||||
COLLADAINCLUDE = ['#dependencies/include/collada-dom', '#dependencies/include/collada-dom/1.4']
|
||||
COLLADALIB = ['libcollada14dom24']
|
||||
XERCESLIB = ['xerces-c_3']
|
||||
PNGLIB = ['libpng16']
|
||||
JPEGLIB = ['jpeg']
|
||||
GLLIB = ['opengl32', 'glu32', 'glew32mx', 'gdi32', 'user32']
|
||||
GLFLAGS = ['/D', 'GLEW_MX']
|
||||
SHLIBPREFIX = 'lib'
|
||||
SHLIBSUFFIX = '.dll'
|
||||
LIBSUFFIX = '.lib'
|
||||
PROGSUFFIX = '.exe'
|
||||
PYTHON27LIB = ['boost_python27-vc100-mt-1_53', 'python27']
|
||||
PYTHON27INCLUDE = ['#dependencies/include/python27']
|
||||
PYTHON32LIB = ['boost_python32-vc100-mt-1_53', 'python32']
|
||||
PYTHON32INCLUDE = ['#dependencies/include/python32']
|
||||
PYTHON33LIB = ['boost_python33-vc100-mt-1_53', 'python33']
|
||||
PYTHON33INCLUDE = ['#dependencies/include/python33']
|
||||
PYTHON34LIB = ['boost_python34-vc100-mt-1_53', 'python34']
|
||||
PYTHON34INCLUDE = ['#dependencies/include/python34']
|
||||
QTINCLUDE = ['#dependencies/qt/include']
|
||||
QTDIR = '#dependencies/qt/i386_vc10'
|
||||
FFTWLIB = ['libfftw-3.3']
|
|
@ -1,40 +0,0 @@
|
|||
BUILDDIR = '#build/release'
|
||||
DISTDIR = '#dist'
|
||||
CXX = 'cl'
|
||||
CC = 'cl'
|
||||
# /O2=optimize for speed, global optimizations, intrinsic functions, favor fast code, frame pointer omission
|
||||
# /EHsc=C++ exceptions, /fp:fast=Enable reasonable FP optimizations, /GS-=No buffer security checks, /GL=whole program optimizations
|
||||
# To include debug information add '/Z7' to CXXFLAGS and '/DEBUG' to LINKFLAGS
|
||||
CXXFLAGS = ['/nologo', '/O2', '/fp:fast', '/arch:SSE2', '/D', 'WIN32', '/W3', '/EHsc', '/GS-', '/GL', '/MD', '/D', 'MTS_DEBUG', '/D', 'SINGLE_PRECISION', '/D', 'SPECTRUM_SAMPLES=3', '/D', 'MTS_SSE', '/D', 'MTS_HAS_COHERENT_RT', '/D', '_CONSOLE', '/D', 'NDEBUG', '/D', 'OPENEXR_DLL', '/openmp']
|
||||
SHCXXFLAGS = CXXFLAGS
|
||||
TARGET_ARCH = 'x86'
|
||||
MSVC_VERSION = '10.0'
|
||||
LINKFLAGS = ['/nologo', '/SUBSYSTEM:CONSOLE', '/MACHINE:X86', '/FIXED:NO', '/OPT:REF', '/OPT:ICF', '/LTCG', '/NODEFAULTLIB:LIBCMT', '/MANIFEST']
|
||||
BASEINCLUDE = ['#include', '#dependencies/include']
|
||||
BASELIB = ['msvcrt', 'ws2_32', 'Half']
|
||||
BASELIBDIR = ['#dependencies/lib/i386_vc10']
|
||||
OEXRINCLUDE = ['#dependencies/include/openexr']
|
||||
OEXRLIB = ['IlmImf', 'IlmThread', 'Iex', 'zlib']
|
||||
BOOSTLIB = ['boost_system-vc100-mt-1_53', 'boost_filesystem-vc100-mt-1_53', 'boost_thread-vc100-mt-1_53']
|
||||
COLLADAINCLUDE = ['#dependencies/include/collada-dom', '#dependencies/include/collada-dom/1.4']
|
||||
COLLADALIB = ['libcollada14dom24']
|
||||
XERCESLIB = ['xerces-c_3']
|
||||
PNGLIB = ['libpng16']
|
||||
JPEGLIB = ['jpeg']
|
||||
GLLIB = ['opengl32', 'glu32', 'glew32mx', 'gdi32', 'user32']
|
||||
GLFLAGS = ['/D', 'GLEW_MX']
|
||||
SHLIBPREFIX = 'lib'
|
||||
SHLIBSUFFIX = '.dll'
|
||||
LIBSUFFIX = '.lib'
|
||||
PROGSUFFIX = '.exe'
|
||||
PYTHON27LIB = ['boost_python27-vc100-mt-1_53', 'python27']
|
||||
PYTHON27INCLUDE = ['#dependencies/include/python27']
|
||||
PYTHON32LIB = ['boost_python32-vc100-mt-1_53', 'python32']
|
||||
PYTHON32INCLUDE = ['#dependencies/include/python32']
|
||||
PYTHON33LIB = ['boost_python33-vc100-mt-1_53', 'python33']
|
||||
PYTHON33INCLUDE = ['#dependencies/include/python33']
|
||||
PYTHON34LIB = ['boost_python34-vc100-mt-1_53', 'python34']
|
||||
PYTHON34INCLUDE = ['#dependencies/include/python34']
|
||||
QTINCLUDE = ['#dependencies/qt/include']
|
||||
QTDIR = '#dependencies/qt/i386_vc10'
|
||||
FFTWLIB = ['libfftw-3.3']
|
|
@ -1,39 +0,0 @@
|
|||
BUILDDIR = '#build/release'
|
||||
DISTDIR = '#dist'
|
||||
CXX = 'icl'
|
||||
CC = 'icl'
|
||||
LINK = 'xilink'
|
||||
CXXFLAGS = ['/nologo', '/O3', '/Qipo', '/QxSSE2', '/QaxSSE3,SSE4.2', '/fp:fast=2', '/D', 'WIN32', '/D', 'WIN64', '/W3', '/Qdiag-disable:803' ,'/Qdiag-disable:2415', '/Qdiag-disable:2586', '/EHsc', '/GS-', '/MD', '/D', 'MTS_DEBUG', '/D', 'SINGLE_PRECISION', '/D', 'SPECTRUM_SAMPLES=3', '/D', 'MTS_SSE', '/D', 'MTS_HAS_COHERENT_RT', '/D', '_CONSOLE', '/D', 'OPENEXR_DLL', '/D', 'NDEBUG', '/Qopenmp']
|
||||
SHCXXFLAGS = CXXFLAGS
|
||||
TARGET_ARCH = 'x86_64'
|
||||
MSVC_VERSION = '10.0'
|
||||
INTEL_COMPILER = True
|
||||
LINKFLAGS = ['/nologo', '/SUBSYSTEM:CONSOLE', '/MACHINE:X64', '/FIXED:NO', '/OPT:REF', '/OPT:ICF', '/NODEFAULTLIB:LIBCMT', '/MANIFEST', '/Qdiag-disable:11024']
|
||||
BASEINCLUDE = ['#include', '#dependencies/include']
|
||||
BASELIB = ['msvcrt', 'ws2_32', 'Half']
|
||||
BASELIBDIR = ['#dependencies/lib/x64_vc10']
|
||||
OEXRINCLUDE = ['#dependencies/include/openexr']
|
||||
OEXRLIB = ['IlmImf', 'IlmThread', 'Iex', 'zlib']
|
||||
BOOSTLIB = ['boost_system-vc100-mt-1_53', 'boost_filesystem-vc100-mt-1_53', 'boost_thread-vc100-mt-1_53']
|
||||
COLLADAINCLUDE = ['#dependencies/include/collada-dom', '#dependencies/include/collada-dom/1.4']
|
||||
COLLADALIB = ['libcollada14dom24']
|
||||
XERCESLIB = ['xerces-c_3']
|
||||
PNGLIB = ['libpng16']
|
||||
JPEGLIB = ['jpeg']
|
||||
GLLIB = ['opengl32', 'glu32', 'glew32mx', 'gdi32', 'user32']
|
||||
GLFLAGS = ['/D', 'GLEW_MX']
|
||||
SHLIBPREFIX = 'lib'
|
||||
SHLIBSUFFIX = '.dll'
|
||||
LIBSUFFIX = '.lib'
|
||||
PROGSUFFIX = '.exe'
|
||||
PYTHON27LIB = ['boost_python27-vc100-mt-1_53', 'python27']
|
||||
PYTHON27INCLUDE = ['#dependencies/include/python27']
|
||||
PYTHON32LIB = ['boost_python32-vc100-mt-1_53', 'python32']
|
||||
PYTHON32INCLUDE = ['#dependencies/include/python32']
|
||||
PYTHON33LIB = ['boost_python33-vc100-mt-1_53', 'python33']
|
||||
PYTHON33INCLUDE = ['#dependencies/include/python33']
|
||||
PYTHON34LIB = ['boost_python34-vc100-mt-1_53', 'python34']
|
||||
PYTHON34INCLUDE = ['#dependencies/include/python34']
|
||||
QTINCLUDE = ['#dependencies/qt/include']
|
||||
QTDIR = '#dependencies/qt/x64_vc10'
|
||||
FFTWLIB = ['libfftw-3.3']
|
|
@ -1,37 +0,0 @@
|
|||
BUILDDIR = '#build/debug'
|
||||
DISTDIR = '#dist'
|
||||
CXX = 'cl'
|
||||
CC = 'cl'
|
||||
CXXFLAGS = ['/nologo', '/Od', '/Z7', '/fp:fast', '/D', 'WIN32', '/D', 'WIN64', '/W3', '/EHsc', '/GS-', '/GL', '/MD', '/D', 'MTS_DEBUG', '/D', 'SINGLE_PRECISION', '/D', 'SPECTRUM_SAMPLES=3', '/D', 'MTS_SSE', '/D', 'MTS_HAS_COHERENT_RT', '/D', '_CONSOLE', '/D', 'DEBUG', '/D', 'OPENEXR_DLL', '/openmp']
|
||||
SHCXXFLAGS = CXXFLAGS
|
||||
TARGET_ARCH = 'x86_64'
|
||||
MSVC_VERSION = '10.0'
|
||||
LINKFLAGS = ['/nologo', '/SUBSYSTEM:CONSOLE', '/DEBUG', '/MACHINE:X64', '/FIXED:NO', '/OPT:REF', '/OPT:ICF', '/LTCG', '/NODEFAULTLIB:LIBCMT', '/MANIFEST']
|
||||
BASEINCLUDE = ['#include', '#dependencies/include']
|
||||
BASELIB = ['msvcrt', 'ws2_32', 'Half']
|
||||
BASELIBDIR = ['#dependencies/lib/x64_vc10']
|
||||
OEXRINCLUDE = ['#dependencies/include/openexr']
|
||||
OEXRLIB = ['IlmImf', 'IlmThread', 'Iex', 'zlib']
|
||||
BOOSTLIB = ['boost_system-vc100-mt-1_53', 'boost_filesystem-vc100-mt-1_53', 'boost_thread-vc100-mt-1_53']
|
||||
COLLADAINCLUDE = ['#dependencies/include/collada-dom', '#dependencies/include/collada-dom/1.4']
|
||||
COLLADALIB = ['libcollada14dom24']
|
||||
XERCESLIB = ['xerces-c_3']
|
||||
PNGLIB = ['libpng16']
|
||||
JPEGLIB = ['jpeg']
|
||||
GLLIB = ['opengl32', 'glu32', 'glew32mx', 'gdi32', 'user32']
|
||||
GLFLAGS = ['/D', 'GLEW_MX']
|
||||
SHLIBPREFIX = 'lib'
|
||||
SHLIBSUFFIX = '.dll'
|
||||
LIBSUFFIX = '.lib'
|
||||
PROGSUFFIX = '.exe'
|
||||
PYTHON27LIB = ['boost_python27-vc100-mt-1_53', 'python27']
|
||||
PYTHON27INCLUDE = ['#dependencies/include/python27']
|
||||
PYTHON32LIB = ['boost_python32-vc100-mt-1_53', 'python32']
|
||||
PYTHON32INCLUDE = ['#dependencies/include/python32']
|
||||
PYTHON33LIB = ['boost_python33-vc100-mt-1_53', 'python33']
|
||||
PYTHON33INCLUDE = ['#dependencies/include/python33']
|
||||
PYTHON34LIB = ['boost_python34-vc100-mt-1_53', 'python34']
|
||||
PYTHON34INCLUDE = ['#dependencies/include/python34']
|
||||
QTINCLUDE = ['#dependencies/qt/include']
|
||||
QTDIR = '#dependencies/qt/x64_vc10'
|
||||
FFTWLIB = ['libfftw-3.3']
|
|
@ -1,40 +0,0 @@
|
|||
BUILDDIR = '#build/release'
|
||||
DISTDIR = '#dist'
|
||||
CXX = 'cl'
|
||||
CC = 'cl'
|
||||
# /O2=optimize for speed, global optimizations, intrinsic functions, favor fast code, frame pointer omission
|
||||
# /EHsc=C++ exceptions, /fp:fast=Enable reasonable FP optimizations, /GS-=No buffer security checks, /GL=whole program optimizations
|
||||
# To include debug information add '/Z7' to CXXFLAGS and '/DEBUG' to LINKFLAGS
|
||||
CXXFLAGS = ['/nologo', '/O2', '/fp:fast', '/D', 'WIN32', '/D', 'WIN64', '/W3', '/EHsc', '/GS-', '/GL', '/MD', '/D', 'MTS_DEBUG', '/D', 'SINGLE_PRECISION', '/D', 'SPECTRUM_SAMPLES=3', '/D', 'MTS_SSE', '/D', 'MTS_HAS_COHERENT_RT', '/D', '_CONSOLE', '/D', 'NDEBUG', '/D', 'OPENEXR_DLL', '/openmp']
|
||||
SHCXXFLAGS = CXXFLAGS
|
||||
TARGET_ARCH = 'x86_64'
|
||||
MSVC_VERSION = '10.0'
|
||||
LINKFLAGS = ['/nologo', '/SUBSYSTEM:CONSOLE', '/MACHINE:X64', '/FIXED:NO', '/OPT:REF', '/OPT:ICF', '/LTCG', '/NODEFAULTLIB:LIBCMT', '/MANIFEST']
|
||||
BASEINCLUDE = ['#include', '#dependencies/include']
|
||||
BASELIB = ['msvcrt', 'ws2_32', 'Half']
|
||||
BASELIBDIR = ['#dependencies/lib/x64_vc10']
|
||||
OEXRINCLUDE = ['#dependencies/include/openexr']
|
||||
OEXRLIB = ['IlmImf', 'IlmThread', 'Iex', 'zlib']
|
||||
BOOSTLIB = ['boost_system-vc100-mt-1_53', 'boost_filesystem-vc100-mt-1_53', 'boost_thread-vc100-mt-1_53']
|
||||
COLLADAINCLUDE = ['#dependencies/include/collada-dom', '#dependencies/include/collada-dom/1.4']
|
||||
COLLADALIB = ['libcollada14dom24']
|
||||
XERCESLIB = ['xerces-c_3']
|
||||
PNGLIB = ['libpng16']
|
||||
JPEGLIB = ['jpeg']
|
||||
GLLIB = ['opengl32', 'glu32', 'glew32mx', 'gdi32', 'user32']
|
||||
GLFLAGS = ['/D', 'GLEW_MX']
|
||||
SHLIBPREFIX = 'lib'
|
||||
SHLIBSUFFIX = '.dll'
|
||||
LIBSUFFIX = '.lib'
|
||||
PROGSUFFIX = '.exe'
|
||||
PYTHON27LIB = ['boost_python27-vc100-mt-1_53', 'python27']
|
||||
PYTHON27INCLUDE = ['#dependencies/include/python27']
|
||||
PYTHON32LIB = ['boost_python32-vc100-mt-1_53', 'python32']
|
||||
PYTHON32INCLUDE = ['#dependencies/include/python32']
|
||||
PYTHON33LIB = ['boost_python33-vc100-mt-1_53', 'python33']
|
||||
PYTHON33INCLUDE = ['#dependencies/include/python33']
|
||||
PYTHON34LIB = ['boost_python34-vc100-mt-1_53', 'python34']
|
||||
PYTHON34INCLUDE = ['#dependencies/include/python34']
|
||||
QTINCLUDE = ['#dependencies/qt/include']
|
||||
QTDIR = '#dependencies/qt/x64_vc10'
|
||||
FFTWLIB = ['libfftw-3.3']
|
|
@ -1,37 +0,0 @@
|
|||
BUILDDIR = '#build/debug'
|
||||
DISTDIR = '#dist'
|
||||
CXX = 'cl'
|
||||
CC = 'cl'
|
||||
CXXFLAGS = ['/nologo', '/Od', '/Z7', '/fp:fast', '/D', 'WIN32', '/D', 'WIN64', '/W3', '/EHsc', '/GS-', '/GL', '/MD', '/D', 'MTS_DEBUG', '/D', 'SINGLE_PRECISION', '/D', 'SPECTRUM_SAMPLES=3', '/D', 'MTS_SSE', '/D', 'MTS_HAS_COHERENT_RT', '/D', '_CONSOLE', '/D', 'DEBUG', '/D', 'OPENEXR_DLL', '/openmp']
|
||||
SHCXXFLAGS = CXXFLAGS
|
||||
TARGET_ARCH = 'x86_64'
|
||||
MSVC_VERSION = '12.0'
|
||||
LINKFLAGS = ['/nologo', '/SUBSYSTEM:CONSOLE', '/DEBUG', '/MACHINE:X64', '/FIXED:NO', '/OPT:REF', '/OPT:ICF', '/LTCG', '/NODEFAULTLIB:LIBCMT', '/MANIFEST']
|
||||
BASEINCLUDE = ['#include', '#dependencies/include']
|
||||
BASELIB = ['msvcrt', 'ws2_32', 'Half']
|
||||
BASELIBDIR = ['#dependencies/lib/x64_vc12']
|
||||
OEXRINCLUDE = ['#dependencies/include/openexr']
|
||||
OEXRLIB = ['IlmImf', 'IlmThread', 'Iex', 'zlib']
|
||||
BOOSTLIB = ['boost_system-vc120-mt-1_53', 'boost_filesystem-vc120-mt-1_53', 'boost_thread-vc120-mt-1_53']
|
||||
COLLADAINCLUDE = ['#dependencies/include/collada-dom', '#dependencies/include/collada-dom/1.4']
|
||||
COLLADALIB = ['libcollada14dom24']
|
||||
XERCESLIB = ['xerces-c_3']
|
||||
PNGLIB = ['libpng16']
|
||||
JPEGLIB = ['jpeg']
|
||||
GLLIB = ['opengl32', 'glu32', 'glew32mx', 'gdi32', 'user32']
|
||||
GLFLAGS = ['/D', 'GLEW_MX']
|
||||
SHLIBPREFIX = 'lib'
|
||||
SHLIBSUFFIX = '.dll'
|
||||
LIBSUFFIX = '.lib'
|
||||
PROGSUFFIX = '.exe'
|
||||
PYTHON27LIB = ['boost_python27-vc120-mt-1_53', 'python27']
|
||||
PYTHON27INCLUDE = ['#dependencies/include/python27']
|
||||
PYTHON32LIB = ['boost_python32-vc120-mt-1_53', 'python32']
|
||||
PYTHON32INCLUDE = ['#dependencies/include/python32']
|
||||
PYTHON33LIB = ['boost_python33-vc120-mt-1_53', 'python33']
|
||||
PYTHON33INCLUDE = ['#dependencies/include/python33']
|
||||
PYTHON34LIB = ['boost_python34-vc120-mt-1_53', 'python34']
|
||||
PYTHON34INCLUDE = ['#dependencies/include/python34']
|
||||
QTINCLUDE = ['#dependencies/qt/include']
|
||||
QTDIR = '#dependencies/qt/x64_vc12'
|
||||
FFTWLIB = ['libfftw-3.3']
|
|
@ -1,40 +0,0 @@
|
|||
BUILDDIR = '#build/release'
|
||||
DISTDIR = '#dist'
|
||||
CXX = 'cl'
|
||||
CC = 'cl'
|
||||
# /O2=optimize for speed, global optimizations, intrinsic functions, favor fast code, frame pointer omission
|
||||
# /EHsc=C++ exceptions, /fp:fast=Enable reasonable FP optimizations, /GS-=No buffer security checks, /GL=whole program optimizations
|
||||
# To include debug information add '/Z7' to CXXFLAGS and '/DEBUG' to LINKFLAGS
|
||||
CXXFLAGS = ['/nologo', '/O2', '/fp:fast', '/D', 'WIN32', '/D', 'WIN64', '/W3', '/EHsc', '/GS-', '/GL', '/MD', '/D', 'MTS_DEBUG', '/D', 'SINGLE_PRECISION', '/D', 'SPECTRUM_SAMPLES=3', '/D', 'MTS_SSE', '/D', 'MTS_HAS_COHERENT_RT', '/D', '_CONSOLE', '/D', 'NDEBUG', '/D', 'OPENEXR_DLL', '/openmp']
|
||||
SHCXXFLAGS = CXXFLAGS
|
||||
TARGET_ARCH = 'x86_64'
|
||||
MSVC_VERSION = '12.0'
|
||||
LINKFLAGS = ['/nologo', '/SUBSYSTEM:CONSOLE', '/MACHINE:X64', '/FIXED:NO', '/OPT:REF', '/OPT:ICF', '/LTCG', '/NODEFAULTLIB:LIBCMT', '/MANIFEST']
|
||||
BASEINCLUDE = ['#include', '#dependencies/include']
|
||||
BASELIB = ['msvcrt', 'ws2_32', 'Half']
|
||||
BASELIBDIR = ['#dependencies/lib/x64_vc12']
|
||||
OEXRINCLUDE = ['#dependencies/include/openexr']
|
||||
OEXRLIB = ['IlmImf', 'IlmThread', 'Iex', 'zlib']
|
||||
BOOSTLIB = ['boost_system-vc120-mt-1_53', 'boost_filesystem-vc120-mt-1_53', 'boost_thread-vc120-mt-1_53']
|
||||
COLLADAINCLUDE = ['#dependencies/include/collada-dom', '#dependencies/include/collada-dom/1.4']
|
||||
COLLADALIB = ['libcollada14dom24']
|
||||
XERCESLIB = ['xerces-c_3']
|
||||
PNGLIB = ['libpng16']
|
||||
JPEGLIB = ['jpeg']
|
||||
GLLIB = ['opengl32', 'glu32', 'glew32mx', 'gdi32', 'user32']
|
||||
GLFLAGS = ['/D', 'GLEW_MX']
|
||||
SHLIBPREFIX = 'lib'
|
||||
SHLIBSUFFIX = '.dll'
|
||||
LIBSUFFIX = '.lib'
|
||||
PROGSUFFIX = '.exe'
|
||||
PYTHON27LIB = ['boost_python27-vc120-mt-1_53', 'python27']
|
||||
PYTHON27INCLUDE = ['#dependencies/include/python27']
|
||||
PYTHON32LIB = ['boost_python32-vc120-mt-1_53', 'python32']
|
||||
PYTHON32INCLUDE = ['#dependencies/include/python32']
|
||||
PYTHON33LIB = ['boost_python33-vc120-mt-1_53', 'python33']
|
||||
PYTHON33INCLUDE = ['#dependencies/include/python33']
|
||||
PYTHON34LIB = ['boost_python34-vc120-mt-1_53', 'python34']
|
||||
PYTHON34INCLUDE = ['#dependencies/include/python34']
|
||||
QTINCLUDE = ['#dependencies/qt/include']
|
||||
QTDIR = '#dependencies/qt/x64_vc12'
|
||||
FFTWLIB = ['libfftw-3.3']
|
|
@ -45,24 +45,24 @@ import SCons.Tool
|
|||
import SCons.Util
|
||||
|
||||
class ToolQtWarning(SCons.Warnings.Warning):
|
||||
pass
|
||||
pass
|
||||
|
||||
class GeneratedMocFileNotIncluded(ToolQtWarning):
|
||||
pass
|
||||
pass
|
||||
|
||||
class QtdirNotFound(ToolQtWarning):
|
||||
pass
|
||||
pass
|
||||
|
||||
SCons.Warnings.enableWarningClass(ToolQtWarning)
|
||||
|
||||
qrcinclude_re = re.compile(r'<file>([^<]*)</file>', re.M)
|
||||
|
||||
def transformToWinePath(path) :
|
||||
return os.popen('winepath -w "%s"'%path).read().strip().replace('\\','/')
|
||||
return os.popen('winepath -w "%s"'%path).read().strip().replace('\\','/')
|
||||
|
||||
header_extensions = [".h", ".hxx", ".hpp", ".hh"]
|
||||
if SCons.Util.case_sensitive_suffixes('.h', '.H'):
|
||||
header_extensions.append('.H')
|
||||
header_extensions.append('.H')
|
||||
# TODO: The following two lines will work when integrated back to SCons
|
||||
# TODO: Meanwhile the third line will do the work
|
||||
#cplusplus = __import__('c++', globals(), locals(), [])
|
||||
|
@ -70,433 +70,427 @@ if SCons.Util.case_sensitive_suffixes('.h', '.H'):
|
|||
cxx_suffixes = [".c", ".cxx", ".cpp", ".cc"]
|
||||
|
||||
def checkMocIncluded(target, source, env):
|
||||
moc = target[0]
|
||||
cpp = source[0]
|
||||
# looks like cpp.includes is cleared before the build stage :-(
|
||||
# not really sure about the path transformations (moc.cwd? cpp.cwd?) :-/
|
||||
path = SCons.Defaults.CScan.path_function(env, moc.cwd)
|
||||
includes = SCons.Defaults.CScan(cpp, env, path)
|
||||
if not moc in includes:
|
||||
SCons.Warnings.warn(
|
||||
GeneratedMocFileNotIncluded,
|
||||
"Generated moc file '%s' is not included by '%s'" %
|
||||
(str(moc), str(cpp)))
|
||||
moc = target[0]
|
||||
cpp = source[0]
|
||||
# looks like cpp.includes is cleared before the build stage :-(
|
||||
# not really sure about the path transformations (moc.cwd? cpp.cwd?) :-/
|
||||
path = SCons.Defaults.CScan.path_function(env, moc.cwd)
|
||||
includes = SCons.Defaults.CScan(cpp, env, path)
|
||||
if not moc in includes:
|
||||
SCons.Warnings.warn(
|
||||
GeneratedMocFileNotIncluded,
|
||||
"Generated moc file '%s' is not included by '%s'" %
|
||||
(str(moc), str(cpp)))
|
||||
|
||||
def find_file(filename, paths, node_factory):
|
||||
for dir in paths:
|
||||
node = node_factory(filename, dir)
|
||||
if node.rexists():
|
||||
return node
|
||||
return None
|
||||
for dir in paths:
|
||||
node = node_factory(filename, dir)
|
||||
if node.rexists():
|
||||
return node
|
||||
return None
|
||||
|
||||
class _Automoc:
|
||||
"""
|
||||
Callable class, which works as an emitter for Programs, SharedLibraries and
|
||||
StaticLibraries.
|
||||
"""
|
||||
"""
|
||||
Callable class, which works as an emitter for Programs, SharedLibraries and
|
||||
StaticLibraries.
|
||||
"""
|
||||
|
||||
def __init__(self, objBuilderName):
|
||||
self.objBuilderName = objBuilderName
|
||||
def __init__(self, objBuilderName):
|
||||
self.objBuilderName = objBuilderName
|
||||
|
||||
def __call__(self, target, source, env):
|
||||
"""
|
||||
Smart autoscan function. Gets the list of objects for the Program
|
||||
or Lib. Adds objects and builders for the special qt files.
|
||||
"""
|
||||
try:
|
||||
if int(env.subst('$QT5_AUTOSCAN')) == 0:
|
||||
return target, source
|
||||
except ValueError:
|
||||
pass
|
||||
try:
|
||||
debug = int(env.subst('$QT5_DEBUG'))
|
||||
except ValueError:
|
||||
debug = 0
|
||||
def __call__(self, target, source, env):
|
||||
"""
|
||||
Smart autoscan function. Gets the list of objects for the Program
|
||||
or Lib. Adds objects and builders for the special qt files.
|
||||
"""
|
||||
try:
|
||||
if int(env.subst('$QT5_AUTOSCAN')) == 0:
|
||||
return target, source
|
||||
except ValueError:
|
||||
pass
|
||||
try:
|
||||
debug = int(env.subst('$QT5_DEBUG'))
|
||||
except ValueError:
|
||||
debug = 0
|
||||
|
||||
# some shortcuts used in the scanner
|
||||
splitext = SCons.Util.splitext
|
||||
objBuilder = getattr(env, self.objBuilderName)
|
||||
# some shortcuts used in the scanner
|
||||
splitext = SCons.Util.splitext
|
||||
objBuilder = getattr(env, self.objBuilderName)
|
||||
|
||||
# some regular expressions:
|
||||
# Q_OBJECT detection
|
||||
q_object_search = re.compile(r'[^A-Za-z0-9]Q_OBJECT[^A-Za-z0-9]')
|
||||
# cxx and c comment 'eater'
|
||||
#comment = re.compile(r'(//.*)|(/\*(([^*])|(\*[^/]))*\*/)')
|
||||
# CW: something must be wrong with the regexp. See also bug #998222
|
||||
# CURRENTLY THERE IS NO TEST CASE FOR THAT
|
||||
# some regular expressions:
|
||||
# Q_OBJECT detection
|
||||
q_object_search = re.compile(r'[^A-Za-z0-9]Q_OBJECT[^A-Za-z0-9]')
|
||||
# cxx and c comment 'eater'
|
||||
#comment = re.compile(r'(//.*)|(/\*(([^*])|(\*[^/]))*\*/)')
|
||||
# CW: something must be wrong with the regexp. See also bug #998222
|
||||
# CURRENTLY THERE IS NO TEST CASE FOR THAT
|
||||
|
||||
# The following is kind of hacky to get builders working properly (FIXME)
|
||||
objBuilderEnv = objBuilder.env
|
||||
objBuilder.env = env
|
||||
mocBuilderEnv = env.Moc5.env
|
||||
env.Moc5.env = env
|
||||
# The following is kind of hacky to get builders working properly (FIXME)
|
||||
objBuilderEnv = objBuilder.env
|
||||
objBuilder.env = env
|
||||
mocBuilderEnv = env.Moc5.env
|
||||
env.Moc5.env = env
|
||||
|
||||
# make a deep copy for the result; MocH objects will be appended
|
||||
out_sources = source[:]
|
||||
# make a deep copy for the result; MocH objects will be appended
|
||||
out_sources = source[:]
|
||||
|
||||
for obj in source:
|
||||
if isinstance(obj,basestring): # big kludge!
|
||||
print "scons: qt5: '%s' MAYBE USING AN OLD SCONS VERSION AND NOT CONVERTED TO 'File'. Discarded." % str(obj)
|
||||
continue
|
||||
if not obj.has_builder():
|
||||
# binary obj file provided
|
||||
if debug:
|
||||
print "scons: qt: '%s' seems to be a binary. Discarded." % str(obj)
|
||||
continue
|
||||
cpp = obj.sources[0]
|
||||
if not splitext(str(cpp))[1] in cxx_suffixes:
|
||||
if debug:
|
||||
print "scons: qt: '%s' is no cxx file. Discarded." % str(cpp)
|
||||
# c or fortran source
|
||||
continue
|
||||
#cpp_contents = comment.sub('', cpp.get_contents())
|
||||
try:
|
||||
cpp_contents = cpp.get_contents()
|
||||
except: continue # may be an still not generated source
|
||||
h=None
|
||||
for h_ext in header_extensions:
|
||||
# try to find the header file in the corresponding source
|
||||
# directory
|
||||
hname = splitext(cpp.name)[0] + h_ext
|
||||
h = find_file(hname, (cpp.get_dir(),), env.File)
|
||||
if h:
|
||||
if debug:
|
||||
print "scons: qt: Scanning '%s' (header of '%s')" % (str(h), str(cpp))
|
||||
#h_contents = comment.sub('', h.get_contents())
|
||||
h_contents = h.get_contents()
|
||||
break
|
||||
if not h and debug:
|
||||
print "scons: qt: no header for '%s'." % (str(cpp))
|
||||
if h and q_object_search.search(h_contents):
|
||||
# h file with the Q_OBJECT macro found -> add moc_cpp
|
||||
moc_cpp = env.Moc5(h)
|
||||
moc_o = objBuilder(moc_cpp)
|
||||
out_sources.append(moc_o)
|
||||
#moc_cpp.target_scanner = SCons.Defaults.CScan
|
||||
if debug:
|
||||
print "scons: qt: found Q_OBJECT macro in '%s', moc'ing to '%s'" % (str(h), str(moc_cpp))
|
||||
if cpp and q_object_search.search(cpp_contents):
|
||||
# cpp file with Q_OBJECT macro found -> add moc
|
||||
# (to be included in cpp)
|
||||
moc = env.Moc5(cpp)
|
||||
env.Ignore(moc, moc)
|
||||
if debug:
|
||||
print "scons: qt: found Q_OBJECT macro in '%s', moc'ing to '%s'" % (str(cpp), str(moc))
|
||||
#moc.source_scanner = SCons.Defaults.CScan
|
||||
# restore the original env attributes (FIXME)
|
||||
objBuilder.env = objBuilderEnv
|
||||
env.Moc5.env = mocBuilderEnv
|
||||
for obj in source:
|
||||
if isinstance(obj,basestring): # big kludge!
|
||||
print "scons: qt5: '%s' MAYBE USING AN OLD SCONS VERSION AND NOT CONVERTED TO 'File'. Discarded." % str(obj)
|
||||
continue
|
||||
if not obj.has_builder():
|
||||
# binary obj file provided
|
||||
if debug:
|
||||
print "scons: qt: '%s' seems to be a binary. Discarded." % str(obj)
|
||||
continue
|
||||
cpp = obj.sources[0]
|
||||
if not splitext(str(cpp))[1] in cxx_suffixes:
|
||||
if debug:
|
||||
print "scons: qt: '%s' is no cxx file. Discarded." % str(cpp)
|
||||
# c or fortran source
|
||||
continue
|
||||
#cpp_contents = comment.sub('', cpp.get_contents())
|
||||
try:
|
||||
cpp_contents = cpp.get_contents()
|
||||
except: continue # may be an still not generated source
|
||||
h=None
|
||||
for h_ext in header_extensions:
|
||||
# try to find the header file in the corresponding source
|
||||
# directory
|
||||
hname = splitext(cpp.name)[0] + h_ext
|
||||
h = find_file(hname, (cpp.get_dir(),), env.File)
|
||||
if h:
|
||||
if debug:
|
||||
print "scons: qt: Scanning '%s' (header of '%s')" % (str(h), str(cpp))
|
||||
#h_contents = comment.sub('', h.get_contents())
|
||||
h_contents = h.get_contents()
|
||||
break
|
||||
if not h and debug:
|
||||
print "scons: qt: no header for '%s'." % (str(cpp))
|
||||
if h and q_object_search.search(h_contents):
|
||||
# h file with the Q_OBJECT macro found -> add moc_cpp
|
||||
moc_cpp = env.Moc5(h)
|
||||
moc_o = objBuilder(moc_cpp)
|
||||
out_sources.append(moc_o)
|
||||
#moc_cpp.target_scanner = SCons.Defaults.CScan
|
||||
if debug:
|
||||
print "scons: qt: found Q_OBJECT macro in '%s', moc'ing to '%s'" % (str(h), str(moc_cpp))
|
||||
if cpp and q_object_search.search(cpp_contents):
|
||||
# cpp file with Q_OBJECT macro found -> add moc
|
||||
# (to be included in cpp)
|
||||
moc = env.Moc5(cpp)
|
||||
env.Ignore(moc, moc)
|
||||
if debug:
|
||||
print "scons: qt: found Q_OBJECT macro in '%s', moc'ing to '%s'" % (str(cpp), str(moc))
|
||||
#moc.source_scanner = SCons.Defaults.CScan
|
||||
# restore the original env attributes (FIXME)
|
||||
objBuilder.env = objBuilderEnv
|
||||
env.Moc5.env = mocBuilderEnv
|
||||
|
||||
return (target, out_sources)
|
||||
return (target, out_sources)
|
||||
|
||||
AutomocShared = _Automoc('SharedObject')
|
||||
AutomocStatic = _Automoc('StaticObject')
|
||||
|
||||
def _detect(env):
|
||||
"""Not really safe, but fast method to detect the QT library"""
|
||||
try: return env['QTDIR']
|
||||
except KeyError: pass
|
||||
"""Not really safe, but fast method to detect the QT library"""
|
||||
try: return env['QTDIR']
|
||||
except KeyError: pass
|
||||
|
||||
try: return os.environ['QTDIR']
|
||||
except KeyError: pass
|
||||
try: return os.environ['QTDIR']
|
||||
except KeyError: pass
|
||||
|
||||
moc = env.WhereIs('moc-qt5') or env.WhereIs('moc5') or env.WhereIs('moc')
|
||||
if moc:
|
||||
QTDIR = os.path.dirname(os.path.dirname(moc))
|
||||
# SCons.Warnings.warn(
|
||||
# QtdirNotFound,
|
||||
# "QTDIR variable is not defined, using moc executable as a hint (QTDIR=%s)" % QTDIR)
|
||||
return QTDIR
|
||||
moc = env.WhereIs('moc-qt5') or env.WhereIs('moc5') or env.WhereIs('moc')
|
||||
if moc:
|
||||
QTDIR = os.path.dirname(os.path.dirname(moc))
|
||||
# SCons.Warnings.warn(
|
||||
# QtdirNotFound,
|
||||
# "QTDIR variable is not defined, using moc executable as a hint (QTDIR=%s)" % QTDIR)
|
||||
return QTDIR
|
||||
|
||||
raise SCons.Errors.StopError(
|
||||
QtdirNotFound,
|
||||
"Could not detect Qt 5 installation")
|
||||
return None
|
||||
raise SCons.Errors.StopError(
|
||||
QtdirNotFound,
|
||||
"Could not detect Qt 5 installation")
|
||||
return None
|
||||
|
||||
def generate(env):
|
||||
"""Add Builders and construction variables for qt to an Environment."""
|
||||
"""Add Builders and construction variables for qt to an Environment."""
|
||||
|
||||
def locateQt5Command(env, command, qtdir) :
|
||||
suffixes = [
|
||||
'-qt5',
|
||||
'-qt5.exe',
|
||||
'5',
|
||||
'5.exe',
|
||||
'',
|
||||
'.exe',
|
||||
]
|
||||
triedPaths = []
|
||||
for suffix in suffixes :
|
||||
fullpath = os.path.join(qtdir,'bin',command + suffix)
|
||||
if os.access(fullpath, os.X_OK) :
|
||||
return fullpath
|
||||
triedPaths.append(fullpath)
|
||||
def locateQt5Command(env, command, qtdir) :
|
||||
suffixes = [
|
||||
'-qt5',
|
||||
'-qt5.exe',
|
||||
'5',
|
||||
'5.exe',
|
||||
'',
|
||||
'.exe',
|
||||
]
|
||||
triedPaths = []
|
||||
for suffix in suffixes :
|
||||
fullpath = os.path.join(qtdir,'bin',command + suffix)
|
||||
if os.access(fullpath, os.X_OK) :
|
||||
return fullpath
|
||||
triedPaths.append(fullpath)
|
||||
|
||||
fullpath = env.Detect([command+'-qt5', command+'5', command])
|
||||
if not (fullpath is None) : return fullpath
|
||||
fullpath = env.Detect([command+'-qt5', command+'5', command])
|
||||
if not (fullpath is None) : return fullpath
|
||||
|
||||
raise Exception("Qt5 command '" + command + "' not found. Tried: " + ', '.join(triedPaths))
|
||||
raise Exception("Qt5 command '" + command + "' not found. Tried: " + ', '.join(triedPaths))
|
||||
|
||||
|
||||
CLVar = SCons.Util.CLVar
|
||||
Action = SCons.Action.Action
|
||||
Builder = SCons.Builder.Builder
|
||||
splitext = SCons.Util.splitext
|
||||
CLVar = SCons.Util.CLVar
|
||||
Action = SCons.Action.Action
|
||||
Builder = SCons.Builder.Builder
|
||||
splitext = SCons.Util.splitext
|
||||
|
||||
env['QTDIR'] = env.GetBuildPath(_detect(env))
|
||||
env['QTDIR'] = env.GetBuildPath(_detect(env))
|
||||
|
||||
# TODO: 'Replace' should be 'SetDefault'
|
||||
# env.SetDefault(
|
||||
env.Replace(
|
||||
QTDIR = _detect(env),
|
||||
QT5_BINPATH = os.path.join('$QTDIR', 'bin'),
|
||||
QT5_LIBPATH = os.path.join('$QTDIR', 'lib'),
|
||||
# TODO: This is not reliable to QTDIR value changes but needed in order to support '-qt5' variants
|
||||
QT5_MOC = locateQt5Command(env,'moc', env['QTDIR']),
|
||||
QT5_UIC = locateQt5Command(env,'uic', env['QTDIR']),
|
||||
QT5_RCC = locateQt5Command(env,'rcc', env['QTDIR']),
|
||||
QT5_LUPDATE = locateQt5Command(env,'lupdate', env['QTDIR']),
|
||||
QT5_LRELEASE = locateQt5Command(env,'lrelease', env['QTDIR']),
|
||||
# TODO: 'Replace' should be 'SetDefault'
|
||||
# env.SetDefault(
|
||||
env.Replace(
|
||||
QTDIR = _detect(env),
|
||||
QT5_BINPATH = os.path.join('$QTDIR', 'bin'),
|
||||
QT5_LIBPATH = os.path.join('$QTDIR', 'lib'),
|
||||
# TODO: This is not reliable to QTDIR value changes but needed in order to support '-qt5' variants
|
||||
QT5_MOC = locateQt5Command(env,'moc', env['QTDIR']),
|
||||
QT5_UIC = locateQt5Command(env,'uic', env['QTDIR']),
|
||||
QT5_RCC = locateQt5Command(env,'rcc', env['QTDIR']),
|
||||
QT5_LUPDATE = locateQt5Command(env,'lupdate', env['QTDIR']),
|
||||
QT5_LRELEASE = locateQt5Command(env,'lrelease', env['QTDIR']),
|
||||
|
||||
QT5_AUTOSCAN = 1, # Should the qt tool try to figure out, which sources are to be moc'ed?
|
||||
QT5_AUTOSCAN = 1, # Should the qt tool try to figure out, which sources are to be moc'ed?
|
||||
|
||||
# Some QT specific flags. I don't expect someone wants to
|
||||
# manipulate those ...
|
||||
QT5_UICFLAGS = CLVar(''),
|
||||
QT5_MOCFROMHFLAGS = CLVar(''),
|
||||
QT5_MOCFROMCXXFLAGS = CLVar('-i'),
|
||||
QT5_QRCFLAGS = '',
|
||||
# Some QT specific flags. I don't expect someone wants to
|
||||
# manipulate those ...
|
||||
QT5_UICFLAGS = CLVar(''),
|
||||
QT5_MOCFROMHFLAGS = CLVar(''),
|
||||
QT5_MOCFROMCXXFLAGS = CLVar('-i'),
|
||||
QT5_QRCFLAGS = '',
|
||||
|
||||
# suffixes/prefixes for the headers / sources to generate
|
||||
QT5_UISUFFIX = '.ui',
|
||||
QT5_UICDECLPREFIX = 'ui_',
|
||||
QT5_UICDECLSUFFIX = '.h',
|
||||
QT5_MOCINCPREFIX = '-I',
|
||||
QT5_MOCHPREFIX = 'moc_',
|
||||
QT5_MOCHSUFFIX = '$CXXFILESUFFIX',
|
||||
QT5_MOCCXXPREFIX = '',
|
||||
QT5_MOCCXXSUFFIX = '.moc',
|
||||
QT5_QRCSUFFIX = '.qrc',
|
||||
QT5_QRCCXXSUFFIX = '$CXXFILESUFFIX',
|
||||
QT5_QRCCXXPREFIX = 'qrc_',
|
||||
QT5_MOCCPPPATH = [],
|
||||
QT5_MOCINCFLAGS = '$( ${_concat(QT5_MOCINCPREFIX, QT5_MOCCPPPATH, INCSUFFIX, __env__, RDirs)} $)',
|
||||
# suffixes/prefixes for the headers / sources to generate
|
||||
QT5_UISUFFIX = '.ui',
|
||||
QT5_UICDECLPREFIX = 'ui_',
|
||||
QT5_UICDECLSUFFIX = '.h',
|
||||
QT5_MOCINCPREFIX = '-I',
|
||||
QT5_MOCHPREFIX = 'moc_',
|
||||
QT5_MOCHSUFFIX = '$CXXFILESUFFIX',
|
||||
QT5_MOCCXXPREFIX = '',
|
||||
QT5_MOCCXXSUFFIX = '.moc',
|
||||
QT5_QRCSUFFIX = '.qrc',
|
||||
QT5_QRCCXXSUFFIX = '$CXXFILESUFFIX',
|
||||
QT5_QRCCXXPREFIX = 'qrc_',
|
||||
QT5_MOCCPPPATH = [],
|
||||
QT5_MOCINCFLAGS = '$( ${_concat(QT5_MOCINCPREFIX, QT5_MOCCPPPATH, INCSUFFIX, __env__, RDirs)} $)',
|
||||
|
||||
# Commands for the qt support ...
|
||||
QT5_UICCOM = '"$QT5_UIC" $QT5_UICFLAGS -o $TARGET $SOURCE',
|
||||
QT5_MOCFROMHCOM = '"$QT5_MOC" $QT5_MOCFROMHFLAGS $QT5_MOCINCFLAGS -o $TARGET $SOURCE',
|
||||
QT5_MOCFROMCXXCOM = [
|
||||
'$QT5_MOC $QT5_MOCFROMCXXFLAGS $QT5_MOCINCFLAGS -o $TARGET $SOURCE',
|
||||
Action(checkMocIncluded,None)],
|
||||
QT5_LUPDATECOM = '"$QT5_LUPDATE" $SOURCE -ts $TARGET',
|
||||
QT5_LRELEASECOM = '"$QT5_LRELEASE" $SOURCE',
|
||||
QT5_RCCCOM = '"$QT5_RCC" $QT5_QRCFLAGS $SOURCE -o $TARGET',
|
||||
)
|
||||
# Commands for the qt support ...
|
||||
QT5_UICCOM = '"$QT5_UIC" $QT5_UICFLAGS -o $TARGET $SOURCE',
|
||||
QT5_MOCFROMHCOM = '"$QT5_MOC" $QT5_MOCFROMHFLAGS $QT5_MOCINCFLAGS -o $TARGET $SOURCE',
|
||||
QT5_MOCFROMCXXCOM = [
|
||||
'$QT5_MOC $QT5_MOCFROMCXXFLAGS $QT5_MOCINCFLAGS -o $TARGET $SOURCE',
|
||||
Action(checkMocIncluded,None)],
|
||||
QT5_LUPDATECOM = '"$QT5_LUPDATE" $SOURCE -ts $TARGET',
|
||||
QT5_LRELEASECOM = '"$QT5_LRELEASE" $SOURCE',
|
||||
QT5_RCCCOM = '"$QT5_RCC" $QT5_QRCFLAGS $SOURCE -o $TARGET',
|
||||
)
|
||||
|
||||
# Translation builder
|
||||
tsbuilder = Builder(
|
||||
action = SCons.Action.Action('$QT5_LUPDATECOM'), #,'$QT5_LUPDATECOMSTR'),
|
||||
multi=1
|
||||
)
|
||||
env.Append( BUILDERS = { 'Ts': tsbuilder } )
|
||||
qmbuilder = Builder(
|
||||
action = SCons.Action.Action('$QT5_LRELEASECOM'),# , '$QT5_LRELEASECOMSTR'),
|
||||
src_suffix = '.ts',
|
||||
suffix = '.qm',
|
||||
single_source = True
|
||||
)
|
||||
env.Append( BUILDERS = { 'Qm': qmbuilder } )
|
||||
# Translation builder
|
||||
tsbuilder = Builder(
|
||||
action = SCons.Action.Action('$QT5_LUPDATECOM'), #,'$QT5_LUPDATECOMSTR'),
|
||||
multi=1
|
||||
)
|
||||
env.Append( BUILDERS = { 'Ts': tsbuilder } )
|
||||
qmbuilder = Builder(
|
||||
action = SCons.Action.Action('$QT5_LRELEASECOM'),# , '$QT5_LRELEASECOMSTR'),
|
||||
src_suffix = '.ts',
|
||||
suffix = '.qm',
|
||||
single_source = True
|
||||
)
|
||||
env.Append( BUILDERS = { 'Qm': qmbuilder } )
|
||||
|
||||
# Resource builder
|
||||
def scanResources(node, env, path, arg):
|
||||
# I've being careful on providing names relative to the qrc file
|
||||
# If that was not needed that code could be simplified a lot
|
||||
def recursiveFiles(basepath, path) :
|
||||
result = []
|
||||
for item in os.listdir(os.path.join(basepath, path)) :
|
||||
itemPath = os.path.join(path, item)
|
||||
if os.path.isdir(os.path.join(basepath, itemPath)) :
|
||||
result += recursiveFiles(basepath, itemPath)
|
||||
else:
|
||||
result.append(itemPath)
|
||||
return result
|
||||
contents = node.get_contents()
|
||||
includes = qrcinclude_re.findall(contents)
|
||||
qrcpath = os.path.dirname(node.path)
|
||||
dirs = [included for included in includes if os.path.isdir(os.path.join(qrcpath,included))]
|
||||
# dirs need to include files recursively
|
||||
for dir in dirs :
|
||||
includes.remove(dir)
|
||||
includes+=recursiveFiles(qrcpath,dir)
|
||||
return includes
|
||||
qrcscanner = SCons.Scanner.Scanner(name = 'qrcfile',
|
||||
function = scanResources,
|
||||
argument = None,
|
||||
skeys = ['.qrc'])
|
||||
qrcbuilder = Builder(
|
||||
action = SCons.Action.Action('$QT5_RCCCOM', '$QT5_RCCCOMSTR'),
|
||||
source_scanner = qrcscanner,
|
||||
src_suffix = '$QT5_QRCSUFFIX',
|
||||
suffix = '$QT5_QRCCXXSUFFIX',
|
||||
prefix = '$QT5_QRCCXXPREFIX',
|
||||
single_source = True
|
||||
)
|
||||
env.Append( BUILDERS = { 'Qrc': qrcbuilder } )
|
||||
# Resource builder
|
||||
def scanResources(node, env, path, arg):
|
||||
# I've being careful on providing names relative to the qrc file
|
||||
# If that was not needed that code could be simplified a lot
|
||||
def recursiveFiles(basepath, path) :
|
||||
result = []
|
||||
for item in os.listdir(os.path.join(basepath, path)) :
|
||||
itemPath = os.path.join(path, item)
|
||||
if os.path.isdir(os.path.join(basepath, itemPath)) :
|
||||
result += recursiveFiles(basepath, itemPath)
|
||||
else:
|
||||
result.append(itemPath)
|
||||
return result
|
||||
contents = node.get_contents()
|
||||
includes = qrcinclude_re.findall(contents)
|
||||
qrcpath = os.path.dirname(node.path)
|
||||
dirs = [included for included in includes if os.path.isdir(os.path.join(qrcpath,included))]
|
||||
# dirs need to include files recursively
|
||||
for dir in dirs :
|
||||
includes.remove(dir)
|
||||
includes+=recursiveFiles(qrcpath,dir)
|
||||
return includes
|
||||
qrcscanner = SCons.Scanner.Scanner(name = 'qrcfile',
|
||||
function = scanResources,
|
||||
argument = None,
|
||||
skeys = ['.qrc'])
|
||||
qrcbuilder = Builder(
|
||||
action = SCons.Action.Action('$QT5_RCCCOM', '$QT5_RCCCOMSTR'),
|
||||
source_scanner = qrcscanner,
|
||||
src_suffix = '$QT5_QRCSUFFIX',
|
||||
suffix = '$QT5_QRCCXXSUFFIX',
|
||||
prefix = '$QT5_QRCCXXPREFIX',
|
||||
single_source = True
|
||||
)
|
||||
env.Append( BUILDERS = { 'Qrc': qrcbuilder } )
|
||||
|
||||
# Interface builder
|
||||
uic5builder = Builder(
|
||||
action = SCons.Action.Action('$QT5_UICCOM', '$QT5_UICCOMSTR'),
|
||||
src_suffix='$QT5_UISUFFIX',
|
||||
suffix='$QT5_UICDECLSUFFIX',
|
||||
prefix='$QT5_UICDECLPREFIX',
|
||||
single_source = True
|
||||
#TODO: Consider the uiscanner on new scons version
|
||||
)
|
||||
env['BUILDERS']['Uic5'] = uic5builder
|
||||
# Interface builder
|
||||
uic5builder = Builder(
|
||||
action = SCons.Action.Action('$QT5_UICCOM', '$QT5_UICCOMSTR'),
|
||||
src_suffix='$QT5_UISUFFIX',
|
||||
suffix='$QT5_UICDECLSUFFIX',
|
||||
prefix='$QT5_UICDECLPREFIX',
|
||||
single_source = True
|
||||
#TODO: Consider the uiscanner on new scons version
|
||||
)
|
||||
env['BUILDERS']['Uic5'] = uic5builder
|
||||
|
||||
# Metaobject builder
|
||||
mocBld = Builder(action={}, prefix={}, suffix={})
|
||||
for h in header_extensions:
|
||||
act = SCons.Action.Action('$QT5_MOCFROMHCOM', '$QT5_MOCFROMHCOMSTR')
|
||||
mocBld.add_action(h, act)
|
||||
mocBld.prefix[h] = '$QT5_MOCHPREFIX'
|
||||
mocBld.suffix[h] = '$QT5_MOCHSUFFIX'
|
||||
for cxx in cxx_suffixes:
|
||||
act = SCons.Action.Action('$QT5_MOCFROMCXXCOM', '$QT5_MOCFROMCXXCOMSTR')
|
||||
mocBld.add_action(cxx, act)
|
||||
mocBld.prefix[cxx] = '$QT5_MOCCXXPREFIX'
|
||||
mocBld.suffix[cxx] = '$QT5_MOCCXXSUFFIX'
|
||||
env['BUILDERS']['Moc5'] = mocBld
|
||||
# Metaobject builder
|
||||
mocBld = Builder(action={}, prefix={}, suffix={})
|
||||
for h in header_extensions:
|
||||
act = SCons.Action.Action('$QT5_MOCFROMHCOM', '$QT5_MOCFROMHCOMSTR')
|
||||
mocBld.add_action(h, act)
|
||||
mocBld.prefix[h] = '$QT5_MOCHPREFIX'
|
||||
mocBld.suffix[h] = '$QT5_MOCHSUFFIX'
|
||||
for cxx in cxx_suffixes:
|
||||
act = SCons.Action.Action('$QT5_MOCFROMCXXCOM', '$QT5_MOCFROMCXXCOMSTR')
|
||||
mocBld.add_action(cxx, act)
|
||||
mocBld.prefix[cxx] = '$QT5_MOCCXXPREFIX'
|
||||
mocBld.suffix[cxx] = '$QT5_MOCCXXSUFFIX'
|
||||
env['BUILDERS']['Moc5'] = mocBld
|
||||
|
||||
# er... no idea what that was for
|
||||
static_obj, shared_obj = SCons.Tool.createObjBuilders(env)
|
||||
static_obj.src_builder.append('Uic5')
|
||||
shared_obj.src_builder.append('Uic5')
|
||||
# er... no idea what that was for
|
||||
static_obj, shared_obj = SCons.Tool.createObjBuilders(env)
|
||||
static_obj.src_builder.append('Uic5')
|
||||
shared_obj.src_builder.append('Uic5')
|
||||
|
||||
# We use the emitters of Program / StaticLibrary / SharedLibrary
|
||||
# to scan for moc'able files
|
||||
# We can't refer to the builders directly, we have to fetch them
|
||||
# as Environment attributes because that sets them up to be called
|
||||
# correctly later by our emitter.
|
||||
env.AppendUnique(PROGEMITTER =[AutomocStatic],
|
||||
SHLIBEMITTER=[AutomocShared],
|
||||
LIBEMITTER =[AutomocStatic],
|
||||
)
|
||||
# We use the emitters of Program / StaticLibrary / SharedLibrary
|
||||
# to scan for moc'able files
|
||||
# We can't refer to the builders directly, we have to fetch them
|
||||
# as Environment attributes because that sets them up to be called
|
||||
# correctly later by our emitter.
|
||||
env.AppendUnique(PROGEMITTER =[AutomocStatic],
|
||||
SHLIBEMITTER=[AutomocShared],
|
||||
LIBEMITTER =[AutomocStatic],
|
||||
)
|
||||
|
||||
# TODO: Does dbusxml2cpp need an adapter
|
||||
env.AddMethod(enable_modules, "EnableQt5Modules")
|
||||
# TODO: Does dbusxml2cpp need an adapter
|
||||
env.AddMethod(enable_modules, "EnableQt5Modules")
|
||||
|
||||
def enable_modules(self, modules, debug=False, crosscompiling=False) :
|
||||
import sys
|
||||
import sys
|
||||
|
||||
validModules = [
|
||||
'QtCore',
|
||||
'QtGui',
|
||||
'QtWidgets',
|
||||
'QtOpenGL',
|
||||
'Qt3Support',
|
||||
'QtAssistant', # deprecated
|
||||
'QtAssistantClient',
|
||||
'QtScript',
|
||||
'QtDBus',
|
||||
'QtSql',
|
||||
'QtSvg',
|
||||
# The next modules have not been tested yet so, please
|
||||
# maybe they require additional work on non Linux platforms
|
||||
'QtNetwork',
|
||||
'QtTest',
|
||||
'QtXml',
|
||||
'QtXmlPatterns',
|
||||
'QtUiTools',
|
||||
'QtDesigner',
|
||||
'QtDesignerComponents',
|
||||
'QtWebKit',
|
||||
'QtHelp',
|
||||
'QtScript',
|
||||
'QtScriptTools',
|
||||
'QtMultimedia',
|
||||
]
|
||||
pclessModules = [
|
||||
validModules = [
|
||||
'QtCore',
|
||||
'QtGui',
|
||||
'QtWidgets',
|
||||
'QtOpenGL',
|
||||
'Qt3Support',
|
||||
'QtAssistant', # deprecated
|
||||
'QtAssistantClient',
|
||||
'QtScript',
|
||||
'QtDBus',
|
||||
'QtSql',
|
||||
'QtSvg',
|
||||
# The next modules have not been tested yet so, please
|
||||
# maybe they require additional work on non Linux platforms
|
||||
'QtNetwork',
|
||||
'QtTest',
|
||||
'QtXml',
|
||||
'QtXmlPatterns',
|
||||
'QtUiTools',
|
||||
'QtDesigner',
|
||||
'QtDesignerComponents',
|
||||
'QtWebKit',
|
||||
'QtHelp',
|
||||
'QtScript',
|
||||
'QtScriptTools',
|
||||
'QtMultimedia',
|
||||
]
|
||||
pclessModules = [
|
||||
# in qt <= 4.3 designer and designerComponents are pcless, on qt5.4 they are not, so removed.
|
||||
# 'QtDesigner',
|
||||
# 'QtDesignerComponents',
|
||||
]
|
||||
staticModules = [
|
||||
'QtUiTools',
|
||||
]
|
||||
invalidModules=[]
|
||||
for module in modules:
|
||||
if module not in validModules :
|
||||
invalidModules.append(module)
|
||||
if invalidModules :
|
||||
raise Exception("Modules %s are not Qt5 modules. Valid Qt5 modules are: %s"% (
|
||||
str(invalidModules),str(validModules)))
|
||||
# 'QtDesigner',
|
||||
# 'QtDesignerComponents',
|
||||
]
|
||||
staticModules = [
|
||||
'QtUiTools',
|
||||
]
|
||||
invalidModules=[]
|
||||
for module in modules:
|
||||
if module not in validModules :
|
||||
invalidModules.append(module)
|
||||
if invalidModules :
|
||||
raise Exception("Modules %s are not Qt5 modules. Valid Qt5 modules are: %s"% (
|
||||
str(invalidModules),str(validModules)))
|
||||
|
||||
moduleDefines = {
|
||||
'QtScript' : ['QT_SCRIPT_LIB'],
|
||||
'QtSvg' : ['QT_SVG_LIB'],
|
||||
'Qt3Support' : ['QT_QT3SUPPORT_LIB','QT3_SUPPORT'],
|
||||
'QtSql' : ['QT_SQL_LIB'],
|
||||
'QtXml' : ['QT_XML_LIB'],
|
||||
'QtOpenGL' : ['QT_OPENGL_LIB'],
|
||||
'QtGui' : ['QT_GUI_LIB'],
|
||||
'QtWidgets' : ['QT_WIDGETS_LIB'],
|
||||
'QtNetwork' : ['QT_NETWORK_LIB'],
|
||||
'QtCore' : ['QT_CORE_LIB'],
|
||||
}
|
||||
for module in modules :
|
||||
try : self.AppendUnique(CPPDEFINES=moduleDefines[module])
|
||||
except: pass
|
||||
debugSuffix = ''
|
||||
if (sys.platform=='darwin' or sys.platform.startswith('linux2')) and not crosscompiling :
|
||||
if debug : debugSuffix = '_debug'
|
||||
for module in modules :
|
||||
if module not in pclessModules : continue
|
||||
self.AppendUnique(LIBS=[module+debugSuffix])
|
||||
self.AppendUnique(LIBPATH=[os.path.join("$QTDIR","lib")])
|
||||
self.AppendUnique(CPPPATH=[os.path.join("$QTDIR","include","qt5")])
|
||||
self.AppendUnique(CPPPATH=[os.path.join("$QTDIR","include","qt5",module)])
|
||||
pcmodules = [module+debugSuffix for module in modules if module not in pclessModules ]
|
||||
if 'QtDBus' in pcmodules:
|
||||
self.AppendUnique(CPPPATH=[os.path.join("$QTDIR","include","qt5","QtDBus")])
|
||||
if "QtAssistant" in pcmodules:
|
||||
self.AppendUnique(CPPPATH=[os.path.join("$QTDIR","include","qt5","QtAssistant")])
|
||||
pcmodules.remove("QtAssistant")
|
||||
pcmodules.append("QtAssistantClient")
|
||||
if sys.platform.startswith('linux'):
|
||||
self.ParseConfig('pkg-config %s --libs --cflags'% ' '.join(pcmodules))
|
||||
elif sys.platform == 'darwin':
|
||||
for module in pcmodules:
|
||||
#self.AppendUnique(CPPPATH="$QTDIR/frameworks/%s.framework/Versions/5/Headers" % module)
|
||||
self.Append(LINKFLAGS=['-framework', module])
|
||||
self["QT5_MOCCPPPATH"] = self["CPPPATH"]
|
||||
return
|
||||
if sys.platform == "win32" or crosscompiling :
|
||||
if crosscompiling:
|
||||
transformedQtdir = transformToWinePath(self['QTDIR'])
|
||||
self['QT5_MOC'] = "QTDIR=%s %s"%( transformedQtdir, self['QT5_MOC'])
|
||||
self.AppendUnique(CPPPATH=[os.path.join("$QTDIR","include")])
|
||||
try: modules.remove("QtDBus")
|
||||
except: pass
|
||||
if debug : debugSuffix = 'd'
|
||||
if "QtAssistant" in modules:
|
||||
self.AppendUnique(CPPPATH=[os.path.join("$QTDIR","include","QtAssistant")])
|
||||
modules.remove("QtAssistant")
|
||||
modules.append("QtAssistantClient")
|
||||
self.AppendUnique(LIBS=[lib+'5'+debugSuffix for lib in modules if lib not in staticModules])
|
||||
self.PrependUnique(LIBS=[lib+debugSuffix for lib in modules if lib in staticModules])
|
||||
if 'QtOpenGL' in modules:
|
||||
self.AppendUnique(LIBS=['opengl32'])
|
||||
self.AppendUnique(CPPPATH=[ '$QTDIR/include/'])
|
||||
self.AppendUnique(CPPPATH=[ '$QTDIR/include/'+module for module in modules])
|
||||
if crosscompiling :
|
||||
self["QT5_MOCCPPPATH"] = [
|
||||
path.replace('$QTDIR', transformedQtdir)
|
||||
for path in self['CPPPATH'] ]
|
||||
else :
|
||||
self["QT5_MOCCPPPATH"] = self["CPPPATH"]
|
||||
self.AppendUnique(LIBPATH=[os.path.join('$QTDIR','lib')])
|
||||
return
|
||||
moduleDefines = {
|
||||
'QtScript' : ['QT_SCRIPT_LIB'],
|
||||
'QtSvg' : ['QT_SVG_LIB'],
|
||||
'Qt3Support' : ['QT_QT3SUPPORT_LIB','QT3_SUPPORT'],
|
||||
'QtSql' : ['QT_SQL_LIB'],
|
||||
'QtXml' : ['QT_XML_LIB'],
|
||||
'QtOpenGL' : ['QT_OPENGL_LIB'],
|
||||
'QtGui' : ['QT_GUI_LIB'],
|
||||
'QtWidgets' : ['QT_WIDGETS_LIB'],
|
||||
'QtNetwork' : ['QT_NETWORK_LIB'],
|
||||
'QtCore' : ['QT_CORE_LIB'],
|
||||
}
|
||||
for module in modules :
|
||||
try : self.AppendUnique(CPPDEFINES=moduleDefines[module])
|
||||
except: pass
|
||||
debugSuffix = ''
|
||||
if (sys.platform=='darwin' or sys.platform.startswith('linux2')) and not crosscompiling :
|
||||
if debug : debugSuffix = '_debug'
|
||||
for module in modules :
|
||||
if module not in pclessModules : continue
|
||||
self.AppendUnique(LIBS=[module+debugSuffix])
|
||||
self.AppendUnique(LIBPATH=[os.path.join("$QTDIR","lib")])
|
||||
self.AppendUnique(CPPPATH=[os.path.join("$QTDIR","include","qt5")])
|
||||
self.AppendUnique(CPPPATH=[os.path.join("$QTDIR","include","qt5",module)])
|
||||
pcmodules = [module+debugSuffix for module in modules if module not in pclessModules ]
|
||||
if 'QtDBus' in pcmodules:
|
||||
self.AppendUnique(CPPPATH=[os.path.join("$QTDIR","include","qt5","QtDBus")])
|
||||
if "QtAssistant" in pcmodules:
|
||||
self.AppendUnique(CPPPATH=[os.path.join("$QTDIR","include","qt5","QtAssistant")])
|
||||
pcmodules.remove("QtAssistant")
|
||||
pcmodules.append("QtAssistantClient")
|
||||
if sys.platform.startswith('linux'):
|
||||
self.ParseConfig('pkg-config %s --libs --cflags'% ' '.join(pcmodules))
|
||||
elif sys.platform == 'darwin':
|
||||
for module in pcmodules:
|
||||
#self.AppendUnique(CPPPATH="$QTDIR/frameworks/%s.framework/Versions/5/Headers" % module)
|
||||
self.Append(LINKFLAGS=['-framework', module])
|
||||
self["QT5_MOCCPPPATH"] = self["CPPPATH"]
|
||||
return
|
||||
if sys.platform == "win32" or crosscompiling :
|
||||
modules_libs = [m[:2]+'5'+m[2:] for m in modules]
|
||||
if crosscompiling:
|
||||
transformedQtdir = transformToWinePath(self['QTDIR'])
|
||||
self['QT5_MOC'] = "QTDIR=%s %s"%( transformedQtdir, self['QT5_MOC'])
|
||||
self.AppendUnique(CPPPATH=[os.path.join("$QTDIR","include")])
|
||||
self.AppendUnique(LIBS=[lib for lib in modules_libs if lib not in staticModules])
|
||||
self.PrependUnique(LIBS=[lib for lib in modules_libs if lib in staticModules])
|
||||
if 'QtOpenGL' in modules:
|
||||
self.AppendUnique(LIBS=['opengl32'])
|
||||
self.AppendUnique(CPPPATH=[ '$QTDIR/include/'])
|
||||
self.AppendUnique(CPPPATH=[ '$QTDIR/include/'+module for module in modules])
|
||||
if crosscompiling :
|
||||
self["QT5_MOCCPPPATH"] = [
|
||||
path.replace('$QTDIR', transformedQtdir)
|
||||
for path in self['CPPPATH'] ]
|
||||
else :
|
||||
self["QT5_MOCCPPPATH"] = self["CPPPATH"]
|
||||
self.AppendUnique(LIBPATH=[os.path.join('$QTDIR','lib')])
|
||||
return
|
||||
|
||||
def exists(env):
|
||||
return _detect(env)
|
||||
return _detect(env)
|
||||
|
|
|
@ -18,11 +18,6 @@
|
|||
Boston, MA 02111-1307, USA. */
|
||||
|
||||
#pragma once
|
||||
#ifndef _GETOPT_H
|
||||
|
||||
#ifndef __need_getopt
|
||||
# define _GETOPT_H 1
|
||||
#endif
|
||||
|
||||
#if !defined(MTS_EXPORT_CORE)
|
||||
#if MTS_BUILD_MODULE == MTS_MODULE_CORE
|
||||
|
@ -134,27 +129,23 @@ struct option
|
|||
/* Many other libraries have conflicting prototypes for getopt, with
|
||||
differences in the consts, in stdlib.h. To avoid compilation
|
||||
errors, only prototype getopt for the GNU C library. */
|
||||
extern MTS_EXPORT_CORE int getopt (int __argc, char *const *__argv, const char *__shortopts);
|
||||
extern MTS_EXPORT_CORE int getopt (int argc, char *const *argv, const char *shortopts);
|
||||
|
||||
# ifndef __need_getopt
|
||||
extern MTS_EXPORT_CORE int getopt_long (int __argc, char *const *__argv, const char *__shortopts,
|
||||
const struct option *__longopts, int *__longind);
|
||||
extern MTS_EXPORT_CORE int getopt_long_only (int __argc, char *const *__argv,
|
||||
const char *__shortopts,
|
||||
const struct option *__longopts, int *__longind);
|
||||
# ifndef need_getopt
|
||||
extern MTS_EXPORT_CORE int getopt_long (int argc, char *const *argv, const char *shortopts,
|
||||
const struct option *longopts, int *longind);
|
||||
extern MTS_EXPORT_CORE int getopt_long_only (int argc, char *const *argv,
|
||||
const char *shortopts,
|
||||
const struct option *longopts, int *longind);
|
||||
|
||||
/* Internal only. Users should not call this directly. */
|
||||
extern MTS_EXPORT_CORE int _getopt_internal (int __argc, char *const *__argv,
|
||||
const char *__shortopts,
|
||||
const struct option *__longopts, int *__longind,
|
||||
int __long_only);
|
||||
extern MTS_EXPORT_CORE int _getopt_internal (int argc, char *const *argv,
|
||||
const char *shortopts,
|
||||
const struct option *longopts, int *longind,
|
||||
int long_only);
|
||||
# endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
/* Make sure we later can get all the definitions and declarations. */
|
||||
#undef __need_getopt
|
||||
|
||||
#endif /* getopt.h */
|
||||
|
|
|
@ -22,6 +22,10 @@
|
|||
|
||||
#include <boost/static_assert.hpp>
|
||||
|
||||
#if defined(__MSVC__)
|
||||
# include <intrin.h>
|
||||
#endif
|
||||
|
||||
MTS_NAMESPACE_BEGIN
|
||||
|
||||
/*! \addtogroup libcore
|
||||
|
|
|
@ -35,15 +35,10 @@ if hasQt:
|
|||
del qtEnv['LINKFLAGS'][index]
|
||||
qtEnv.Append(CXXFLAGS=['/D', '_WINDOWS', '/D', 'MTS_CUSTOM_QTMAIN', '/D', 'MTSGUI_STATIC_QFILEDIALOG=1'])
|
||||
qtEnv.Append(LINKFLAGS=['/SUBSYSTEM:WINDOWS'])
|
||||
if hasBreakpad:
|
||||
qtEnv.Append(CPPPATH=['#dependencies/include/breakpad'])
|
||||
qtEnv.Append(LIBS=['breakpad_common', 'breakpad_exception_handler', 'breakpad_crash_generation_client',
|
||||
'breakpad_crash_report_sender', 'wininet'])
|
||||
qtEnv.Append(LIBS=['qtmain', 'shell32'])
|
||||
elif sys.platform == 'darwin':
|
||||
qtEnv.Append(LINKFLAGS=['-Fdependencies/frameworks', '-framework',
|
||||
'BWToolkitFramework', '-framework', 'Security', '-framework', 'CoreFoundation'])
|
||||
if hasBreakpad:
|
||||
qtEnv.Append(LINKFLAGS=['-framework', 'Breakpad'])
|
||||
# Qt 4 headers cause a lot of warnings on clang/OSX -- turn them off
|
||||
if qtEnv['CXX'] == 'clang++':
|
||||
qtEnv.Append(CPPFLAGS=['-Wno-unused-private-field', '-Wno-uninitialized'])
|
||||
|
|
|
@ -179,7 +179,7 @@ protected:
|
|||
public:
|
||||
QtDevice(QGLWidget *widget) : WGLDevice(NULL), m_widget(widget) { }
|
||||
void init(Device *other = NULL) {
|
||||
m_hwnd = m_widget->winId();
|
||||
m_hwnd = (HWND) m_widget->winId();
|
||||
m_hdc = wglGetCurrentDC();
|
||||
}
|
||||
#else
|
||||
|
|
|
@ -1,94 +0,0 @@
|
|||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
||||
** All rights reserved.
|
||||
** Contact: Nokia Corporation (qt-info@nokia.com)
|
||||
**
|
||||
** This file is part of the Windows main function of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:BSD$
|
||||
** You may use this file under the terms of the BSD license as follows:
|
||||
**
|
||||
** "Redistribution and use in source and binary forms, with or without
|
||||
** modification, are permitted provided that the following conditions are
|
||||
** met:
|
||||
** * Redistributions of source code must retain the above copyright
|
||||
** notice, this list of conditions and the following disclaimer.
|
||||
** * Redistributions in binary form must reproduce the above copyright
|
||||
** notice, this list of conditions and the following disclaimer in
|
||||
** the documentation and/or other materials provided with the
|
||||
** distribution.
|
||||
** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
|
||||
** the names of its contributors may be used to endorse or promote
|
||||
** products derived from this software without specific prior written
|
||||
** permission.
|
||||
**
|
||||
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
#if defined(MTS_CUSTOM_QTMAIN)
|
||||
|
||||
#if !defined(_WIN32)
|
||||
# error This source file can only be used in Windows builds
|
||||
#endif
|
||||
|
||||
#include <QtCore/QVector>
|
||||
#include <QtCore/QByteArray>
|
||||
#include <QtCore/QString>
|
||||
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#include <windows.h>
|
||||
|
||||
/*
|
||||
This file contains the code in the qtmain library for Windows.
|
||||
qtmain contains the Windows startup code and is required for
|
||||
linking to the Qt DLL.
|
||||
|
||||
When a Windows application starts, the WinMain function is
|
||||
invoked. WinMain calls qWinMain in the Qt DLL/library, which
|
||||
initializes Qt.
|
||||
*/
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
extern void qWinMain(HINSTANCE, HINSTANCE, LPSTR, int, int &, QVector<char *> &);
|
||||
QT_END_NAMESPACE
|
||||
|
||||
QT_USE_NAMESPACE
|
||||
|
||||
extern "C" int main(int, char **);
|
||||
|
||||
/*
|
||||
WinMain() - Initializes Windows and calls user's startup function main().
|
||||
NOTE: WinMain() won't be called if the application was linked as a "console"
|
||||
application.
|
||||
*/
|
||||
|
||||
extern "C"
|
||||
int APIENTRY WinMain(HINSTANCE instance, HINSTANCE prevInstance, LPSTR /*cmdParamarg*/, int cmdShow)
|
||||
{
|
||||
// Work-around problems with wchar_t as a native type
|
||||
const unsigned short * cmdLineUtf16 =
|
||||
reinterpret_cast<const unsigned short*> (GetCommandLineW ());
|
||||
QByteArray cmdParam = QString::fromUtf16 (cmdLineUtf16).toLocal8Bit();
|
||||
|
||||
int argc = 0;
|
||||
QVector<char *> argv(8);
|
||||
qWinMain(instance, prevInstance, cmdParam.data(), cmdShow, argc, argv);
|
||||
|
||||
int result = main(argc, argv.data());
|
||||
return result;
|
||||
}
|
||||
|
||||
#endif // MTS_CUSTOM_QTMAIN
|
Loading…
Reference in New Issue