Skip to content

Commit

Permalink
Merge pull request #437 from opticks-org/feature/centos7-fixes
Browse files Browse the repository at this point in the history
Feature/centos7 fixes
  • Loading branch information
Trevor R.H. Clarke authored Jan 10, 2020
2 parents 513c3ae + 938d063 commit 7965116
Show file tree
Hide file tree
Showing 23 changed files with 137 additions and 1,744 deletions.
14 changes: 14 additions & 0 deletions Code/application/CompileSettings/eigen3.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import os
import os.path
import SCons.Warnings

class Eigen3NotFound(SCons.Warnings.Warning):
pass
SCons.Warnings.enableWarningClass(Eigen3NotFound)

def generate(env):
dep_include = env["OPTICKSDEPENDENCIESINCLUDE"]
env.AppendUnique(CXXFLAGS="-I%s/eigen3" % dep_include)

def exists(env):
return env.Detect('eigen3')
312 changes: 0 additions & 312 deletions Code/application/CompileSettings/package/__init__.py

This file was deleted.

Loading

0 comments on commit 7965116

Please sign in to comment.