Skip to content
Snippets Groups Projects
Select Git revision
  • 3b6c60c99b6fad3ce55e7b14a2445758337087b3
  • master default protected
  • ccl
  • jardin
  • cms/general/lorem
  • cms/ccl/ca-marche
  • cms/grenier/index
  • content
  • preview
  • develop
  • deploy
  • test
12 results

index.md

Blame
  • To learn more about this project, read the wiki.
    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()