summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '3rdParty/Boost/SConscript')
m---------3rdParty/Boost0
-rw-r--r--3rdParty/Boost/SConscript66
2 files changed, 0 insertions, 66 deletions
diff --git a/3rdParty/Boost b/3rdParty/Boost
new file mode 160000
+Subproject 3bbdbc8cf1996f23d9a366da8bac0f97be6ad79
diff --git a/3rdParty/Boost/SConscript b/3rdParty/Boost/SConscript
deleted file mode 100644
index d828edc..0000000
--- a/3rdParty/Boost/SConscript
+++ /dev/null
@@ -1,66 +0,0 @@
-Import("env")
-
-cppdefines = ["BOOST_ALL_NO_LIB", ("BOOST_SIGNALS_NAMESPACE", "bsignals")]
-env["BOOST_FLAGS"] = {
- "CPPFLAGS": ["-I" + Dir(".").abspath],
- "CPPDEFINES": cppdefines,
- "LIBPATH": [Dir(".")],
- "LIBS": ["Boost"]
- }
-
-myenv = env.Clone()
-myenv.Replace(CCFLAGS = [flag for flag in env["CCFLAGS"] if flag not in ["-W", "-Wall"]])
-
-sources = [
- "libs/date_time/src/gregorian/date_generators.cpp",
- "libs/date_time/src/gregorian/greg_month.cpp",
- "libs/date_time/src/gregorian/greg_weekday.cpp",
- "libs/date_time/src/gregorian/gregorian_types.cpp",
- "libs/date_time/src/posix_time/posix_time_types.cpp",
- "libs/system/src/error_code.cpp",
- "libs/thread/src/tss_null.cpp",
- "libs/signals/src/connection.cpp",
- "libs/signals/src/named_slot_map.cpp",
- "libs/signals/src/signal_base.cpp",
- "libs/signals/src/slot.cpp",
- "libs/signals/src/trackable.cpp",
- "libs/filesystem/src/operations.cpp",
- "libs/filesystem/src/path.cpp",
- "libs/filesystem/src/portability.cpp",
- "libs/filesystem/src/utf8_codecvt_facet.cpp",
- "libs/regex/src/c_regex_traits.cpp",
- "libs/regex/src/cpp_regex_traits.cpp",
- "libs/regex/src/cregex.cpp",
- "libs/regex/src/fileiter.cpp",
- "libs/regex/src/icu.cpp",
- "libs/regex/src/instances.cpp",
- "libs/regex/src/posix_api.cpp",
- "libs/regex/src/regex.cpp",
- "libs/regex/src/regex_debug.cpp",
- "libs/regex/src/regex_raw_buffer.cpp",
- "libs/regex/src/regex_traits_defaults.cpp",
- "libs/regex/src/static_mutex.cpp",
- "libs/regex/src/w32_regex_traits.cpp",
- "libs/regex/src/wc_regex_traits.cpp",
- "libs/regex/src/wide_posix_api.cpp",
- "libs/regex/src/winstances.cpp",
- "libs/regex/src/usinstances.cpp"]
-
-if env["PLATFORM"] != "win32" :
- sources += [
- "libs/thread/src/pthread/exceptions.cpp",
- "libs/thread/src/pthread/once.cpp",
- "libs/thread/src/pthread/thread.cpp"]
- env["BOOST_FLAGS"]["LIBS"] += ["pthread"]
-else :
- sources += [
- "win32_stubs.cpp",
- "libs/thread/src/win32/exceptions.cpp",
- "libs/thread/src/win32/thread.cpp",
- "libs/thread/src/win32/tss_dll.cpp",
- "libs/thread/src/win32/tss_pe.cpp"]
- env["BOOST_FLAGS"]["CPPDEFINES"] += [("_WIN32_WINNT", "0x0501")]
- if env["PLATFORM"] == "cygwin" :
- env["BOOST_FLAGS"]["CPPDEFINES"] += ["__USE_W32_SOCKETS"]
-
-myenv.StaticLibrary("Boost", sources, CPPFLAGS = "-I" + Dir(".").abspath, CPPDEFINES = cppdefines)