-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdefault-rpi.sconf
39 lines (28 loc) · 1.05 KB
/
default-rpi.sconf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import os
import sys
import glob
windows = os.name.lower() == "nt" and sys.platform.lower().startswith("win")
macos = sys.platform.lower().startswith("darwin")
linux = not windows and not macos
unix = not windows
mode='release'
check_libs=0
jobs=2
extern = '#../3rdParties'
CPPDEFINES.extend(['BOOST_ALL_DYN_LINK', 'BOOST_LOG_DYN_LINK', 'BOOST_SPIRIT_USE_PHOENIX_V3', 'BOOST_SIGNALS_NO_DEPRECATION_WARNING' ])
aliases = [('kalisync')]
default = ['kalisync']
ccache = False
ccachedir = join(extern,'kaliscope_cache')
incdir_qt5 = '/usr/local/qt5/include'
libdir_qt5 = '/usr/local/qt5/lib/'
lib_qt5 = [ 'Qt5Network', 'Qt5Core', 'Qt5Gui', 'Qt5PrintSupport', 'Qt5Widgets', 'Qt5OpenGL', 'Qt5Sql' ]
incdir_boost = join(extern,'boost')
libdir_boost = join(extern,'boost/stage/lib')
incdir_ncurses = join(extern,'ncurses/include')
libdir_ncurses = join(extern,'ncurses/lib')
incdir_cdk = join(extern,'cdk/include')
libdir_cdk = join(extern,'cdk/')
incdir_fmod = join(extern,'fmod/api/lowlevel/inc')
libdir_fmod = join(extern,'fmod/api/lowlevel/lib')
CXXFLAGS = ['-std=c++11']