diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 284 |
1 files changed, 63 insertions, 221 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 282ff29..d0426a7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,34 +1,18 @@ -################################################# -# -# (C) 2010 Serghei Amelian -# serghei (DOT) amelian (AT) gmail.com -# -# Improvements and feedback are welcome -# -# This file is released under GPL >= 2 -# -################################################# +########################################### +# # +# (C) 2010 Serghei Amelian # +# serghei (DOT) amelian (AT) gmail.com # +# # +# Improvements and feedback are welcome # +# # +# This file is released under GPL >= 2 # +# # +########################################### cmake_minimum_required( VERSION 2.8.12 ) -##### include essential cmake modules ########### - -include( CheckCXXSourceCompiles ) -include( CheckFunctionExists ) -include( CheckSymbolExists ) -include( CheckPrototypeDefinition ) -include( CheckIncludeFile ) -include( CheckLibraryExists ) -include( FindPkgConfig ) - - -##### include our cmake modules ################# -set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" ) -include( TDEMacros ) - - -##### project settings ########################## +##### general package setup project( arts ) @@ -38,20 +22,24 @@ set( ARTS_MICRO_VERSION 10 ) set( ARTS_VERSION "${ARTS_MAJOR_VERSION}.${ARTS_MINOR_VERSION}.${ARTS_MICRO_VERSION}" ) -##### user requested options #################### +##### include essential cmake modules -option( WITH_ALL_OPTIONS "Enable all optional support" OFF ) -option( WITH_ALSA "Enable ALSA support" ON ) -option( WITH_AUDIOFILE "Enable audiofile (wav) support" ON ) -option( WITH_VORBIS "Enable Ogg/Vorbis support" ON ) -option( WITH_MAD "Enable MAD mp3 decoder support" ON ) -option( WITH_ESOUND "Enable ESOUND support" ${WITH_ALL_OPTIONS} ) -option( WITH_JACK "Enable JACK support" ${WITH_ALL_OPTIONS} ) -option( WITH_SNDIO "Enable SNDIO support" OFF ) -option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} ) +include( FindPkgConfig ) +include( CheckFunctionExists ) +include( CheckSymbolExists ) +include( CheckIncludeFile ) +include( CheckIncludeFiles ) +include( CheckLibraryExists ) +include( CheckPrototypeDefinition ) +include( CheckCSourceCompiles ) + +##### include our cmake modules + +set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" ) +include( TDEMacros ) -##### paths setup ############################### +##### setup install paths tde_setup_install_path( EXEC_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}" ) tde_setup_install_path( BIN_INSTALL_DIR "${EXEC_INSTALL_PREFIX}/bin" ) @@ -60,184 +48,60 @@ tde_setup_install_path( INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/include/$ tde_setup_install_path( PKGCONFIG_INSTALL_DIR "${LIB_INSTALL_DIR}/pkgconfig" ) -##### setup architecture flags ################## - -tde_setup_architecture_flags( ) - -include(TestBigEndian) -test_big_endian(WORDS_BIGENDIAN) - -tde_setup_largefiles( ) - - -##### check for include files ################### - -check_include_file( "sys/time.h" HAVE_SYS_TIME_H ) -check_include_file( "time.h" TIME_WITH_SYS_TIME ) -check_include_file( "stdio.h" HAVE_STDIO_H ) -check_include_file( "stdlib.h" HAVE_STDLIB_H ) -check_include_file( "string.h" HAVE_STRING_H ) -check_include_file( "strings.h" HAVE_STRINGS_H ) -check_include_file( "ctype.h" HAVE_CTYPE_H ) -check_include_file( "malloc.h" HAVE_MALLOC_H ) -check_include_file( "memory.h" HAVE_MEMORY_H ) -check_include_file( "dlfcn.h" HAVE_DLFCN_H ) -check_include_file( "sys/soundcard.h" HAVE_SYS_SOUNDCARD_H ) -check_include_file( "pthread.h" HAVE_LIBPTHREAD ) - - -##### check for system libraries ################ - -set( DL_LIBRARIES dl ) -check_library_exists( ${DL_LIBRARIES} dlopen /lib HAVE_LIBDL ) -if( NOT HAVE_LIBDL ) - unset( DL_LIBRARIES ) - check_function_exists( dlopen HAVE_DLOPEN ) - if( HAVE_DLOPEN ) - set( HAVE_LIBDL 1 ) - endif( HAVE_DLOPEN ) -endif( NOT HAVE_LIBDL ) - -find_package( Threads ) - - -##### check for functions ####################### - -set( bak_CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} ) -set( CMAKE_REQUIRED_LIBRARIES ${DL_LIBRARIES} ) -check_function_exists( dlerror HAVE_DLERROR ) -check_function_exists( strcmp HAVE_STRCMP ) -check_function_exists( strchr HAVE_STRCHR ) -check_function_exists( index HAVE_INDEX ) -check_function_exists( strrchr HAVE_STRRCHR ) -check_function_exists( rindex HAVE_RINDEX ) -check_function_exists( memcpy HAVE_MEMCPY ) -check_function_exists( bcopy HAVE_BCOPY ) -set( CMAKE_REQUIRED_LIBRARIES ${bak_CMAKE_REQUIRED_LIBRARIES} ) -unset( bak_CMAKE_REQUIRED_LIBRARIES ) -check_prototype_definition( ioctl "int ioctl(int d, int request, ...)" "-1" "unistd.h;sys/ioctl.h" HAVE_IOCTL_INT_INT_DOTS ) -check_prototype_definition( ioctl "int ioctl(int d, unsigned long request, ...)" "-1" "unistd.h;sys/ioctl.h" HAVE_IOCTL_INT_ULONG_DOTS ) - - -##### check for audiofile ####################### - -set( HAVE_LIBAUDIOFILE 0 ) -if( WITH_AUDIOFILE ) - - pkg_search_module( AUDIOFILE audiofile ) - if( AUDIOFILE_FOUND ) - set( HAVE_LIBAUDIOFILE 1 ) - else( AUDIOFILE_FOUND ) - message(FATAL_ERROR "\naudiofile (wav) support are requested, but `libaudiofile` not found" ) - endif( AUDIOFILE_FOUND ) - -endif( WITH_AUDIOFILE ) - - -##### check for alsa ############################ - -set( HAVE_LIBASOUND2 0 ) -if( WITH_ALSA ) - - pkg_search_module( ALSA alsa ) - - if( ALSA_FOUND ) - - # there is support only for ALSA 1.x - - set( HAVE_LIBASOUND2 1 ) - set( ALSA_PCM_OLD_SW_PARAMS_API 1 ) - set( ALSA_PCM_OLD_HW_PARAMS_API 1 ) - - check_include_file( "alsa/asoundlib.h" HAVE_ALSA_ASOUNDLIB_H ) - if( NOT HAVE_ALSA_ASOUNDLIB_H ) - check_include_file( "sys/asoundlib.h" HAVE_SYS_ASOUNDLIB_H ) - endif( NOT HAVE_ALSA_ASOUNDLIB_H ) - - set( bak_CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} ) - set( CMAKE_REQUIRED_LIBRARIES ${ALSA_LIBRARIES} ) - check_function_exists( snd_pcm_resume HAVE_SND_PCM_RESUME ) - set( CMAKE_REQUIRED_LIBRARIES ${bak_CMAKE_REQUIRED_LIBRARIES} ) - unset( bak_CMAKE_REQUIRED_LIBRARIES ) - - else( ALSA_FOUND ) - - message(FATAL_ERROR "\nALSA support are requested, but not found on your system" ) - - endif( ALSA_FOUND ) - -endif( WITH_ALSA ) - - -##### check for esound ####################### - -set( HAVE_LIBESD 0 ) -if( WITH_ESOUND ) +##### optional stuff - pkg_search_module( ESOUND esound ) - if( ESOUND_FOUND ) - set( HAVE_LIBESD 1 ) - else( ESOUND_FOUND ) - message(FATAL_ERROR "\nESOUND support is requested, but `libesd` not found" ) - endif( ESOUND_FOUND ) - -endif( WITH_ESOUND ) +option( WITH_ALL_OPTIONS "Enable all optional support" ON ) +option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} ) +option( WITH_ALSA "Enable ALSA support" ${WITH_ALL_OPTIONS} ) +option( WITH_AUDIOFILE "Enable audiofile (wav) support" ${WITH_ALL_OPTIONS} ) +option( WITH_VORBIS "Enable Ogg/Vorbis support" ${WITH_ALL_OPTIONS} ) +option( WITH_MAD "Enable MAD mp3 decoder support" ${WITH_ALL_OPTIONS} ) +option( WITH_ESOUND "Enable ESOUND support" ${WITH_ALL_OPTIONS} ) +option( WITH_JACK "Enable JACK support" ${WITH_ALL_OPTIONS} ) +option( WITH_SNDIO "Enable SNDIO support" OFF ) +option( WITH_NAS "Enable Network Audio System support" ${WITH_ALL_OPTIONS} ) +option( WITH_OSS "Enable Open Sound System support" OFF ) +option( WITH_TOSS "Enable Threaded Open Sound System support" OFF ) -##### check for JACK ############################ +##### user requested modules -set( HAVE_LIBJACK 0 ) -if( WITH_JACK ) - pkg_search_module( LIBJACK jack ) - if( LIBJACK_FOUND ) - set( HAVE_LIBJACK 1 ) - else( LIBJACK_FOUND ) - message(FATAL_ERROR "\nJACK support is requested, but `jack.pc` was not found" ) - endif( LIBJACK_FOUND ) -endif( WITH_JACK ) +option( BUILD_ALL "Build all" ON ) +option( BUILD_DOC "Build documentation" ${BUILD_ALL} ) +option( BUILD_TRANSLATIONS "Build translations" ${BUILD_ALL} ) -##### check for SNDIO ########################### +##### configure checks -set( HAVE_LIBSNDIO 0 ) -if( WITH_SNDIO ) - check_include_file( "sndio.h" HAVE_SNDIO_H ) - if( HAVE_SNDIO_H ) - set( HAVE_LIBSNDIO 1 ) - set( LIBSNDIO_LIBRARIES "sndio" ) - else( HAVE_SNDIO_H ) - tde_message_fatal( "SNDIO support is requested, but `sndio.h` was not found" ) - endif( HAVE_SNDIO_H ) -endif( WITH_SNDIO ) +include( ConfigureChecks.cmake ) -##### check for glib/gthread modules ############ +###### global compiler settings -pkg_search_module( GLIB2 glib-2.0 ) +add_definitions( -DHAVE_CONFIG_H ) -if( GLIB2_FOUND ) - pkg_search_module( GTHREAD2 gthread-2.0 ) - if( NOT GTHREAD2_FOUND ) - message(FATAL_ERROR "\ngthread-2.0 are required, but not found on your system" ) - endif( NOT GTHREAD2_FOUND ) -else( GLIB2_FOUND ) - message(FATAL_ERROR "\nglib-2.0 are required, but not found on your system" ) -endif( GLIB2_FOUND ) - - -##### check for TQt ############################# +set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TQT_CXX_FLAGS}" ) +set( CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined" ) +set( CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined" ) -find_package( TQt ) +##### directories -##### check for gcc visibility support ######### +add_subdirectory( libltdl ) +add_subdirectory( mcop ) +add_subdirectory( mcopidl ) +add_subdirectory( flow ) +#add_subdirectory( mcop_mt ) +#add_subdirectory( soundserver ) +#add_subdirectory( artsc ) +#add_subdirectory( gmcop ) +#add_subdirectory( qtmcop ) -if( WITH_GCC_VISIBILITY ) - tde_setup_gcc_visibility( ) -endif( ) +tde_conditional_add_subdirectory( BUILD_DOC doc ) +#tde_conditional_add_subdirectory( BUILD_TRANSLATIONS translations ) -##### write config.h file ####################### +##### write configure files configure_file( config.h.cmake config.h @ONLY ) @@ -277,25 +141,3 @@ string( REGEX REPLACE "^${CMAKE_INSTALL_PREFIX}" "\${prefix}" PC_INCLUDE_DIR ${I string( REGEX REPLACE "^${CMAKE_INSTALL_PREFIX}" "\${prefix}" PC_LIB_DIR ${LIB_INSTALL_DIR} ) configure_file( arts.pc.cmake arts.pc @ONLY ) install( FILES ${CMAKE_CURRENT_BINARY_DIR}/arts.pc DESTINATION ${PKGCONFIG_INSTALL_DIR} ) - - -##### global compiler settings ################## - -add_definitions( - -DHAVE_CONFIG_H -) - -set( CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined" ) - - -##### project subdirectories #################### - -add_subdirectory( libltdl ) -add_subdirectory( mcop ) -add_subdirectory( mcopidl ) -add_subdirectory( flow ) -add_subdirectory( mcop_mt ) -add_subdirectory( soundserver ) -add_subdirectory( artsc ) -add_subdirectory( gmcop ) -add_subdirectory( qtmcop ) |