mirror of
https://github.com/Relintai/pmlpp.git
synced 2024-11-09 13:22:09 +01:00
12 lines
214 B
Plaintext
12 lines
214 B
Plaintext
|
#!/usr/bin/env python
|
||
|
|
||
|
from compat import open_utf8
|
||
|
|
||
|
Import("env")
|
||
|
|
||
|
env.main_sources = []
|
||
|
|
||
|
env.add_source_files(env.main_sources, "main.cpp")
|
||
|
lib = env.add_library("main", env.main_sources)
|
||
|
env.Prepend(LIBS=[lib])
|