Update SConscript

This commit is contained in:
Bernard Xiong 2019-12-11 08:23:09 +08:00 committed by GitHub
parent 2700130ea6
commit 4d9bc92885
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [str(Dir('#')), cwd]
src = Glob('*.c') + Glob('*.cpp')
CPPPATH = [cwd]
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)