summaryrefslogtreecommitdiff
path: root/platform/server
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-03-06 13:31:52 +0100
committerRémi Verschelde <rverschelde@gmail.com>2020-03-06 14:37:52 +0100
commit9d8a9ea826ac733e7076d567ef2a6b5200de68c4 (patch)
tree86c063a81caf98a48bdc3137306a4c62fb723ab3 /platform/server
parent1e255532e90fa35148167e4c153ad39f77010a04 (diff)
assimp: Clean and document buildsystem, prepare for unbundling
- Improve the SCsub to allow unbundling and remove unnecessary code. - Move files around to match upstream source. - Re-sync with upstream commit 308db73d0b3c2d1870cd3e465eaa283692a4cf23 to ensure we don't have local modifications. - Doesn't actually build against current version 5.0.1 due to the lack of the new ArmaturePopulate API that Gordon authored. We'll have to wait for a public release with that API (5.1?) to enable unbundling.
Diffstat (limited to 'platform/server')
-rw-r--r--platform/server/detect.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/platform/server/detect.py b/platform/server/detect.py
index ef94dc436c..db9ba8d036 100644
--- a/platform/server/detect.py
+++ b/platform/server/detect.py
@@ -163,6 +163,10 @@ def configure(env):
sys.exit(255)
env.ParseConfig('pkg-config bullet --cflags --libs')
+ if False: # not env['builtin_assimp']:
+ # FIXME: Add min version check
+ env.ParseConfig('pkg-config assimp --cflags --libs')
+
if not env['builtin_enet']:
env.ParseConfig('pkg-config libenet --cflags --libs')