-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSConstruct
More file actions
38 lines (31 loc) · 762 Bytes
/
SConstruct
File metadata and controls
38 lines (31 loc) · 762 Bytes
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 glob, re
import os
import sys
env = Environment()
# C++ environment
env.Append(
CPPPATH = [
"#src",
],
CXXFLAGS = [
'-Wall',
'-fPIC',
],
LIBPATH = [
"#src",
],
)
avTestVersioningVersion = "0.0.1"
staticTestVersioning = env.StaticLibrary(
'sTestVersioning',
Glob( 'src/*.cpp' )
)
sharedTestVersioning = env.SharedLibrary(
'testVersioning',
Glob( 'AvTranscoder/*.cpp' ),
SHLIBVERSION = avTestVersioningVersion,
)
Export( { 'sTestVersioning' : staticTestVersioning } )
Export( { 'testVersioning' : sharedTestVersioning } )
# env.Alias( "install", env.Install( "lib", staticTestVersioning ) )
# env.Alias( "install", env.InstallVersionedLib( "lib" , sharedTestVersioning ) )