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

Add audacity src

This commit is contained in:
James Crook
2018-03-30 19:34:31 +01:00
parent ece54aa947
commit c3a440e561
2 changed files with 504 additions and 2 deletions

View File

@@ -1,7 +1,10 @@
#directory audacity top level
cmake_minimum_required (VERSION 2.8.12) # so we can use cotire
cmake_minimum_required (VERSION 3.8) # so we can use cotire and source_group
cmake_policy(SET CMP0043 NEW) # just hide an annoying warning in 3.0.2
# There must be a symbol for this already, surely?
set( top_dir ${CMAKE_SOURCE_DIR} )
# These stop the results being mixed in with our source tree.
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
@@ -20,5 +23,13 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
add_subdirectory( "lib-src" )
#add_subdirectory( "src" )
add_subdirectory( "src" )
# Uncomment what follows for symbol values.
#[[
get_cmake_property(_variableNames VARIABLES)
foreach (_variableName ${_variableNames})
message(STATUS "${_variableName}=${${_variableName}}")
endforeach()
]]#