This repository was archived by the owner on Dec 29, 2024. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3131
3232# Editors
3333.vscode
34+ .nvim.lua
35+ .nvimrc
36+ .exrc
3437.clangd
3538.cache
3639* .cbp
Original file line number Diff line number Diff line change @@ -6,9 +6,18 @@ import fnmatch
66from config import configure
77
88Export ('configure' )
9+
910env = SConscript ("external/SConscript" )
1011env .Tool ('compilation_db' )
1112
13+ if os .name == 'posix' :
14+ if os .environ .get ('CXX' , None ) != None and env ['CXX' ] != os .environ ['CXX' ]:
15+ print ("Using system CXX: {}" .format (os .environ ['CXX' ]))
16+ env ['CXX' ] = os .environ ['CXX' ]
17+ if os .environ .get ('CC' , None ) != None and env ['CC' ] != os .environ ['CC' ]:
18+ print ("Using system CC: {}" .format (os .environ ['CC' ]))
19+ env ['CC' ] = os .environ ['CC' ]
20+
1221env .Append (CPPDEFINES = ['LAPI_GDEXTENSION' ])
1322env .Append (CPPPATH = [Dir ('src' ).abspath , Dir ('external' ).abspath ])
1423
You can’t perform that action at this time.
0 commit comments