Skip to content
Snippets Groups Projects
Select Git revision
  • 5868fe175f312ae121edbd6e827702a1938d500b
  • main default protected
  • ud_training_script
  • fix_seed
  • merged-with-ner
  • multiword_fix_transformer
  • transformer_encoder
  • combo3
  • save_deprel_matrix_to_npz
  • master protected
  • combo-lambo
  • lambo-sent-attributes
  • adding_lambo
  • develop
  • update_allenlp2
  • develop_tmp
  • tokens_truncation
  • LR_test
  • eud_iwpt
  • iob
  • eud_iwpt_shared_task_bert_finetuning
  • 3.3.1
  • list
  • 3.2.1
  • 3.0.3
  • 3.0.1
  • 3.0.0
  • v1.0.6
  • v1.0.5
  • v1.0.4
  • v1.0.3
  • v1.0.2
  • v1.0.1
  • v1.0.0
34 results

tox.ini

Blame
  • CMakeLists.txt 4.04 KiB
    PROJECT(Corpus2Library)
    
    set(corpus2_ver_major "1")
    set(corpus2_ver_minor "8")
    set(corpus2_ver_patch "0")
    
    cmake_minimum_required(VERSION 2.8.0)
    
    # use some of our own Find* scripts
    set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMakeScripts)
    
    IF(NOT CMAKE_BUILD_TYPE)
    	SET(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING
    		"Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel."
    		FORCE)
    ENDIF(NOT CMAKE_BUILD_TYPE)
    
    set(CORPUS2_BUILD_SWIG True CACHE BOOL "Build SWIG Python wrappers")
    set(CORPUS2_BUILD_POLIQARP False CACHE BOOL "Build Poliqarp library and wrapper (forces GPL)")
    mark_as_advanced(CLEAR CORPUS2_BUILD_POLIQARP)
    
    if(CMAKE_COMPILER_IS_GNUCXX)
    	# Set our own default flags at first run.
    	if(NOT CONFIGURED)
    
    		if(ENABLE_STRICT_COMPILATION)
    			set(STRICT_FLAGS "-Werror -Wno-unused-parameter")
    		else(ENABLE_STRICT_COMPILATION)
    			set(STRICT_FLAGS "")
    		endif(ENABLE_STRICT_COMPILATION)
    
    
    		# Strict compilation for C files is disabled until somebody wants to clean them.
    		set(CMAKE_C_FLAGS "-W -Wall -ansi $ENV{CFLAGS}" 
    				CACHE STRING "Flags used by the C compiler during normal builds." FORCE)
    		set(CMAKE_C_FLAGS_DEBUG "-O0 -DDEBUG -ggdb3 -W -Wall -ansi $ENV{CFLAGS}"
    				CACHE STRING "Flags used by the C compiler during debug builds." FORCE)
    
    		set(CMAKE_CXX_FLAGS "-W -Wall -ansi ${STRICT_FLAGS} $ENV{CXXFLAGS}"
    				CACHE STRING "Flags used by the CXX compiler during normal builds." FORCE)
    		set(CMAKE_CXX_FLAGS_DEBUG "-O0 -DDEBUG -ggdb3 -W -Wall -ansi ${STRICT_FLAGS} $ENV{CXXFLAGS}"
    				CACHE STRING "Flags used by the CXX compiler during debug builds." FORCE)
    
    		set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O2 -g -fno-omit-frame-pointer" 
    				CACHE STRING "Flags used by the CXX compiler during relwithdebiginfo builds" FORCE)
    		set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
    	endif(NOT CONFIGURED)
    
    endif(CMAKE_COMPILER_IS_GNUCXX)
    
    set(LIBS "")
    include_directories(${Corpus2Library_SOURCE_DIR})
    
    find_package(Boost 1.41 REQUIRED COMPONENTS program_options system filesystem regex iostreams)
    MARK_AS_ADVANCED(Boost_DIR)
    if(MSVC OR BORLAND)
    # Use the auto-linking feature, don't try to add libraries yourself:
    	set(Boost_LIBRARIES "")
    # Note the default is to link static libs and it is left like that here.
    # You can make it link to DLL by defining BOOST_#module#_DYN_LINK
    # in C++ source file or somewhere in CMake file, e.g. 
    # add_definitions( -DBOOST_FILESYSTEM_DYN_LINK )
    endif(MSVC OR BORLAND)
    
    set(LIBCORPUS2_INSTALL_DATA_DIR share/corpus2)
    FIND_PATH(LIBCORPUS2_SRC_DATA_DIR
    	kipi.tagset
    	${CMAKE_SOURCE_DIR}/corpus2data
    )
    MARK_AS_ADVANCED(LIBCORPUS2_SRC_DATA_DIR)
    
    if(CORPUS2_BUILD_POLIQARP)
    	message(STATUS "Building Poliqarp library and wrapper")	
    	add_subdirectory(poliqarp-library)
    	add_subdirectory(poliqarp)
    	add_definitions( -DWITH_POLIQARP )
    else()
    	message(STATUS "Not building Poliqarp library and wrapper")
    endif(CORPUS2_BUILD_POLIQARP)
    
    add_subdirectory(libpwrutils)
    add_subdirectory(libcorpus2)
    add_subdirectory(libcorpus2_whole)
    add_subdirectory(corpus2tools)
    add_subdirectory(learn_to_guess)
    
    
    if(UNIX)
    	add_subdirectory(tests)
    endif(UNIX)
    
    if(CORPUS2_BUILD_SWIG)
    	FIND_PACKAGE(SWIG)
    	if(SWIG_FOUND)
    		message(STATUS "SWIG found, Python wrappers will be built")
    		add_subdirectory(swig)
    	else()
    		message(STATUS "WARNING: SWIG not found, Python wrappers will not be built")
    	endif(SWIG_FOUND)
    else()
    	message(STATUS "Not building SWIG Python wrappers")
    endif(CORPUS2_BUILD_SWIG)
    
    if(NOT CORPUS2_BUILD_POLIQARP)
    	message(STATUS "*****************************************************")
    	message(STATUS "GPL Component: Poliqarp library; has not been built.")
    	message(STATUS "Use cmake wizard mode: -i; to include it into build.")
    	message(STATUS "*****************************************************")
    else(NOT CORPUS2_BUILD_POLIQARP)
    	message(STATUS "*****************************************************")
    	message(STATUS "GPL Components: Poliqarp library; has been built.")
    	message(STATUS "Use cmake wizard mode: -i; to exclude it from the build.")
    	message(STATUS "*****************************************************")
    endif(NOT CORPUS2_BUILD_POLIQARP)