Skip to content

Instantly share code, notes, and snippets.

@bdbaddog
Created January 22, 2016 01:03
Show Gist options
  • Save bdbaddog/81d68da444214913cd94 to your computer and use it in GitHub Desktop.
Save bdbaddog/81d68da444214913cd94 to your computer and use it in GitHub Desktop.
scons example with versioned shared library installing into other dir and variant_dir
int abc() {
return 1;
}
Import('env')
# this will expand into xyz/libmylib
env.SharedLibrary("#xyz/mylib",['a.c'],)
env=Environment()
SConscript('a/SConscript',variant_dir='build',exports='env')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment