rcpp_framework/web/SCsub

14 lines
319 B
Plaintext
Raw Normal View History

#!/usr/bin/env python
Import("env")
env.core_sources = []
env.add_source_files(env.core_sources, "*.cpp")
env.add_source_files(env.core_sources, "./html/*.cpp")
env.add_source_files(env.core_sources, "./http/*.cpp")
# Build it all as a library
2022-02-05 15:47:28 +01:00
lib = env.add_library("web", env.core_sources)
env.Prepend(LIBS=[lib])