mirror of
https://github.com/Relintai/pmlpp.git
synced 2024-11-08 13:12:09 +01:00
15 lines
287 B
Python
15 lines
287 B
Python
#!/usr/bin/env python
|
|
|
|
from compat import open_utf8
|
|
|
|
Import("env")
|
|
|
|
env.platform_sources = []
|
|
|
|
env.add_source_files(env.platform_sources, "sfw.cpp")
|
|
env.add_source_files(env.platform_sources, "image.cpp")
|
|
|
|
lib = env.add_library("platform", env.platform_sources)
|
|
env.Prepend(LIBS=[lib])
|
|
|