Select Git revision
CMakeLists.txt
Johannes Heinecke authored
CMakeLists.txt 664 B
if(MACA_EXPORT)
FIND_PACKAGE(SWIG)
if (SWIG_FOUND)
FIND_PACKAGE(PythonLibs)
if(PYTHONLIBS_FOUND)
message(STATUS "OK: PythonLibs ${PYTHONLIBS_VERSION_STRING} found. Run your python scripts with python ${PYTHONLIBS_VERSION_STRING}!")
endif()
FIND_PACKAGE(Java 1.7)
# if (Java_FOUND OR JAVA_FOUND)
# message(STATUS "OK: Java ${Java_VERSION_STRING} found")
FIND_PACKAGE(JNI)
# if (JNI_FOUND)
# message(STATUS "OK: JNI found")
# endif()
# endif()
add_subdirectory(tagger)
add_subdirectory(lemmatizer)
add_subdirectory(parser)
else()
message("swig >= 3.0 not installed on your system")
endif()
add_subdirectory(src)
endif()