mirror of
https://github.com/godotengine/godot
synced 2024-11-02 08:18:44 +00:00
399b1b0474
- Removed trailing spaces - Made sure all indentation is done using tabs (fixes #39) - Potentially fixed an identation issue for openssl check
10 lines
166 B
Text
10 lines
166 B
Text
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])
|