remove FindClonedEigency.cmake

release/4.3a0
Duy-Nguyen Ta 2017-07-28 15:22:40 -04:00
parent e7e75c3ac2
commit b73e22220d
2 changed files with 0 additions and 28 deletions

View File

@ -21,7 +21,6 @@ install(FILES
GtsamCythonWrap.cmake
GtsamTesting.cmake
FindCython.cmake
FindClonedEigency.cmake
FindNumPy.cmake
README.html
DESTINATION "${SCRIPT_INSTALL_DIR}/GTSAMCMakeTools")

View File

@ -1,27 +0,0 @@
# Find the cloned version of eigency built and installed by gtsam
#
# This code sets the following variables:
#
# CLONEDEIGENCY_FOUND
# CLONEDEIGENCY_INCLUDE_DIRS
#
# Find python
find_package( PythonInterp )
if ( PYTHONINTERP_FOUND )
execute_process( COMMAND "${PYTHON_EXECUTABLE}" "-c"
"import clonedEigency; includes=clonedEigency.get_includes(include_eigen=False); print includes[0], ';', includes[1]"
RESULT_VARIABLE RESULT
OUTPUT_VARIABLE CLONEDEIGENCY_INCLUDE_DIRS
OUTPUT_STRIP_TRAILING_WHITESPACE
)
endif ()
include( FindPackageHandleStandardArgs )
find_package_handle_standard_args(ClonedEigency
FOUND_VAR
CLONEDEIGENCY_FOUND
REQUIRED_VARS
CLONEDEIGENCY_INCLUDE_DIRS
)