diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-02-12 20:54:23 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-02-12 20:54:23 (GMT) |
commit | 231c2cb6d00061e70860626467107f4c63f359a0 (patch) | |
tree | c3ab479f071e882030d6b2fc6d2e3d88b25d16fe /3rdParty/Expat/SConscript | |
parent | 0efa7c32aaf21a29b42b5926cc116007056843be (diff) | |
download | swift-231c2cb6d00061e70860626467107f4c63f359a0.zip swift-231c2cb6d00061e70860626467107f4c63f359a0.tar.bz2 |
Creating more submodules.
Diffstat (limited to '3rdParty/Expat/SConscript')
m--------- | 3rdParty/Expat | 0 | ||||
-rw-r--r-- | 3rdParty/Expat/SConscript | 23 |
2 files changed, 0 insertions, 23 deletions
diff --git a/3rdParty/Expat b/3rdParty/Expat new file mode 160000 +Subproject 2e5ac4f15191c245a39b3e223c18de0477c23ab diff --git a/3rdParty/Expat/SConscript b/3rdParty/Expat/SConscript deleted file mode 100644 index 3e3b751..0000000 --- a/3rdParty/Expat/SConscript +++ /dev/null @@ -1,23 +0,0 @@ -Import(["env", "conf_env"]) - -env["EXPAT_FLAGS"] = { - "CPPDEFINES": ["XML_STATIC"], - "CPPPATH": [Dir("src")], - "LIBPATH": [Dir(".")], - "LIBS": ["Expat"], - } - -myenv = env.Clone() -myenv.Append(CPPDEFINES = ["XML_STATIC", "HAVE_EXPAT_CONFIG_H"]) -myenv.Append(CPPPATH = [".", "src"]) - -conf = Configure(conf_env) -if conf.CheckFunc('memmove') : - myenv.Append(CPPDEFINES = ["HAVE_MEMMOVE"]) -conf.Finish() - -myenv.StaticLibrary("Expat", [ - "src/xmltok.c", - "src/xmlparse.c", - "src/xmlrole.c" - ]) |