summaryrefslogtreecommitdiff
path: root/src/tools/SConscript
blob: dad8d8e31961d042f20524fb99bc76855a001f45 (plain)
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
#!/bin/false

import os
import os.path
import glob


Import('env')

dir_path = Dir('.').abspath

# Environment for base library
tool_env = env.Clone();

tool_env.sources = sorted(glob.glob(dir_path + "/*.cpp"))
tool_env.headers = sorted(glob.glob(dir_path + "/*.h"))

env.sources += tool_env.sources;
env.headers += tool_env.headers;

# Set Alias
env.Alias('tools', []);

env.targets += ['tools'];