diff options
author | Ariel Manzur <ariel@godotengine.org> | 2016-05-21 20:07:32 -0300 |
---|---|---|
committer | Ariel Manzur <ariel@godotengine.org> | 2016-05-21 20:07:32 -0300 |
commit | 12bd9ee6f27c6d40f91e0bee7b150fea257463cb (patch) | |
tree | 4ef0ee5f47cfa5d992c5c83b524b8022e04dc793 /drivers/openssl | |
parent | 6cf2353305922f3464ff91ae1b137e747e1d2961 (diff) |
fix
Diffstat (limited to 'drivers/openssl')
-rw-r--r-- | drivers/openssl/SCsub | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/openssl/SCsub b/drivers/openssl/SCsub index e40ebcf720..40e3d0c0f0 100644 --- a/drivers/openssl/SCsub +++ b/drivers/openssl/SCsub @@ -1,5 +1,6 @@ +Import('env_drivers') Import('env') -env.add_source_files(env.drivers_sources,"*.cpp") -env.add_source_files(env.drivers_sources,"*.c") +env_drivers.add_source_files(env.drivers_sources,"*.cpp") +env_drivers.add_source_files(env.drivers_sources,"*.c") |