* pyeo
This commit is contained in:
parent
3786ba8296
commit
ceeee7c41e
4 changed files with 7 additions and 9 deletions
|
|
@ -27,23 +27,23 @@ INCLUDE_DIRECTORIES(${PYTHON_INCLUDE_PATH})
|
|||
|
||||
LINK_DIRECTORIES(${Boost_LIBRARY_DIRS})
|
||||
|
||||
# python
|
||||
IF(APPLE)
|
||||
# osx internal
|
||||
FIND_LIBRARY(APPLE_CARBON Carbon)
|
||||
ENDIF(APPLE)
|
||||
|
||||
|
||||
# includes
|
||||
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR})
|
||||
INCLUDE_DIRECTORIES(../)
|
||||
#INCLUDE_DIRECTORIES(../)
|
||||
|
||||
# source
|
||||
FILE(GLOB SOURCES *.cpp)
|
||||
|
||||
# EO dependencies
|
||||
SET(EO_SOURCES
|
||||
../eoFunctorStore.cpp
|
||||
../utils/eoLogger.cpp
|
||||
${EO_SOURCE_DIR}/src/eoFunctorStore.cpp
|
||||
${EO_SOURCE_DIR}/src/utils/eoLogger.cpp
|
||||
${EO_SOURCE_DIR}/src/utils/eoParallel.cpp
|
||||
)
|
||||
|
||||
# shared library
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import sys
|
|||
sys.path.append('..')
|
||||
|
||||
print 'importing pyeo'
|
||||
from PyEO import *
|
||||
from libPyEO import *
|
||||
print 'done'
|
||||
|
||||
from copy import copy
|
||||
|
|
|
|||
|
|
@ -5,5 +5,3 @@ do
|
|||
python $i > /dev/null
|
||||
|
||||
done
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
"""Test script for the eoSGATranform class"""
|
||||
|
||||
from copy import deepcopy
|
||||
from PyEO import *
|
||||
from libPyEO import *
|
||||
from maxone import *
|
||||
|
||||
pop = eoPop()
|
||||
|
|
|
|||
Reference in a new issue