mirror of
https://github.com/godotengine/godot.git
synced 2026-02-23 07:31:08 +00:00
- 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])
|