Skip to content
Snippets Groups Projects
Select Git revision
  • 454d807ca81dc8e969e7f71cac78a78f29361f62
  • master default protected
  • johannes
  • partial_parser
  • Aloui_Dary
  • ignore_punct
  • AC
  • classifier
  • fixhelp
  • libmacaon2
  • error_predictor
  • morpho
  • ssrnn
  • tfparsing
  • silvio
  • tagger_options
  • maca_trans_frame_parser
  • alexis
  • new_config
  • tagparse
  • maca_graph_parser
21 results

CMakeLists.txt

Blame
  • 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()