godot/tests/SCsub

16 lines
341 B
Plaintext
Raw Normal View History

#!/usr/bin/python
Import("env")
2014-02-10 02:10:30 +01:00
env.tests_sources = []
2014-02-10 02:10:30 +01:00
env_tests = env.Clone()
# Enable test framework and inform it of configuration method.
env_tests.Append(CPPDEFINES=["DOCTEST_CONFIG_IMPLEMENT"])
env_tests.add_source_files(env.tests_sources, "*.cpp")
lib = env_tests.add_library("tests", env.tests_sources)
2014-02-10 02:10:30 +01:00
env.Prepend(LIBS=[lib])