1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-11 09:03:36 +02:00

Move all CMake of lib-src to cmake-proxies

Previously lib-src that we controlled had their cmake files with them.  This is clearer.
Also added place holders for help and locale.
Also enabled libvorbis and soundtouch and disabled portburn.
This commit is contained in:
James Crook
2018-04-01 09:58:23 +01:00
parent 94a731982d
commit 47e826546a
5 changed files with 41 additions and 23 deletions

View File

@@ -1,10 +1,13 @@
#directory audacity top level
cmake_minimum_required (VERSION 3.8) # so we can use cotire and source_group
# 3.8 so we can use source_group
# cotire only needs 2.8.12
cmake_minimum_required (VERSION 3.8)
cmake_policy(SET CMP0043 NEW) # just hide an annoying warning in 3.0.2
# There must be a symbol for this already, surely?
# Renaming. Could just use the official name throughout.
set( top_dir ${CMAKE_SOURCE_DIR} )
# Path for cotire.cmake, and later for our wxwidgets.cmake.
set( CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake-proxies/cmake-modules)
include(cotire)
@@ -25,7 +28,7 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
#set( wxWidgets_CONFIGURATION "mswud" )
add_subdirectory( "lib-src" )
#add_subdirectory( "lib-src" ) #All lib building happens via the proxies.
add_subdirectory( "cmake-proxies" )
add_subdirectory( "src" )