mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-04 01:29:43 +02:00
cmake-proxies/expat/CMakeLists.txt seems to make more problems than it solves. But the native one appears doing its job well on multiple platforms. Tested on Windows, OSX, Linux and FreeBSD. # Please enter the commit message for your changes. Lines starting # with '#' will be ignored, and an empty message aborts the commit. # # Author: Vitaliy Kirsanov <krokoziabla@yandex-team.ru> # Date: Thu Mar 14 19:03:29 2019 +0300 # # On branch tmp # Your branch is up to date with 'my/tmp'. # # Changes to be committed: # modified: cmake-proxies/CMakeLists.txt # deleted: cmake-proxies/expat/CMakeLists.txt # modified: lib-src/expat/CMakeLists.txt # # Changes not staged for commit: # modified: lib-src/expat/CMakeLists.txt #
44 lines
1.3 KiB
CMake
44 lines
1.3 KiB
CMake
#directory cmake-proxies
|
|
set( LIB_SRC_DIRECTORY ${top_dir}/lib-src/ )
|
|
|
|
#These are done in their actual directories, no need for a proxy.
|
|
|
|
#Same idea, but not yet done/needed
|
|
#add_subdirectory( "mod-null" )
|
|
#add_subdirectory( "mod-nyq-bench" )
|
|
#add_subdirectory( "mod-track-panel" )
|
|
|
|
#These are all headers, nothing to build.
|
|
#add_subdirectory( "ffmpeg" )
|
|
#add_subdirectory( "lame" )
|
|
|
|
|
|
# libexpat
|
|
set( BUILD_shared OFF CACHE INTERNAL "" FORCE )
|
|
add_subdirectory( "${LIB_SRC_DIRECTORY}expat" "${CMAKE_CURRENT_BINARY_DIR}/expat" EXCLUDE_FROM_ALL )
|
|
|
|
add_subdirectory( "FileDialog" )
|
|
#add_subdirectory( "help" )
|
|
add_subdirectory( "libflac" )
|
|
add_subdirectory( "libflac++" )
|
|
add_subdirectory( "libid3tag" )
|
|
add_subdirectory( "libmad" )
|
|
add_subdirectory( "libnyquist" )
|
|
add_subdirectory( "libogg" )
|
|
add_subdirectory( "libscorealign" )
|
|
add_subdirectory( "libsndfile" )
|
|
add_subdirectory( "libsoxr" )
|
|
add_subdirectory( "libvamp" )
|
|
add_subdirectory( "libvorbis" )
|
|
#add_subdirectory( "locale" )
|
|
add_subdirectory( "lv2" )
|
|
add_subdirectory( "mod-script-pipe" )
|
|
add_subdirectory( "portaudio-v19" )
|
|
add_subdirectory( "portmidi" )
|
|
add_subdirectory( "portmixer" )
|
|
#add_subdirectory( "portburn" ) # not built
|
|
add_subdirectory( "portsmf" )
|
|
add_subdirectory( "sbsms" )
|
|
add_subdirectory( "soundtouch" )
|
|
add_subdirectory( "twolame" )
|