~eda-qa/leaflang/platform

« back to all changes in this revision

Viewing changes to package/SConscript

  • Committer: edA-qa mort-ora-y
  • Date: 2017-08-06 13:27:14 UTC
  • mto: This revision was merged to the branch mainline in revision 101.
  • Revision ID: eda-qa@disemia.com-20170806132714-qz5xl2dib3xizals
trying to cleanup library building, on linux at least

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import os
 
2
 
 
3
Import('baseEnv')
 
4
env = baseEnv.Clone()
 
5
 
 
6
dist = 'dist'
 
7
 
 
8
exe = env.Install( '.', '$ABS_BUILD_DIR/leaf')
 
9
libs = env.Install( '.', env.Glob( '$ABS_BUILD_DIR/*.so' ) )
 
10
llvm = env.Install( '.', '$LLVM_DIR/lib/libLLVM-3.8.so' )
 
11