mirror of
https://github.com/godotengine/godot.git
synced 2024-11-15 00:23:27 +00:00
399b1b0474
- Removed trailing spaces - Made sure all indentation is done using tabs (fixes #39) - Potentially fixed an identation issue for openssl check
11 lines
166 B
Plaintext
11 lines
166 B
Plaintext
Import('env')
|
|
|
|
env.main_sources=[]
|
|
env.add_source_files(env.main_sources,"*.cpp")
|
|
|
|
Export('env')
|
|
|
|
lib = env.Library("main",env.main_sources)
|
|
|
|
env.Prepend(LIBS=[lib])
|