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

AUP3: Added AUP3 importer and improved progress dialogs

This commit is contained in:
Leland Lucius
2020-07-15 01:32:48 -05:00
parent 1ec7fd56c1
commit 5bc3ae659c
10 changed files with 574 additions and 194 deletions

View File

@@ -19,10 +19,23 @@ list( APPEND INCLUDES
list( APPEND DEFINES
PRIVATE
SQLITE_ENABLE_SNAPSHOT=1
SQLITE_DQS=0
# SQLITE_DEFAULT_PAGE_SIZE=4096
#
# Connection based settings. Persistent settings are done in the
# schema.
#
SQLITE_DEFAULT_LOCKING_MODE=1
SQLITE_DEFAULT_WAL_AUTOCHECKPOINT=100
SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT=50000000
# Can't be set after a WAL mode database is initialized, so change
# the default here to ensure all project files get the same page
# size.
SQLITE_DEFAULT_PAGE_SIZE=65536
#
# Recommended in SQLite docs
#
SQLITE_DQS=0
SQLITE_DEFAULT_MEMSTATUS=0
SQLITE_DEFAULT_WAL_SYNCHRONOUS=1
SQLITE_LIKE_DOESNT_MATCH_BLOBS

View File

@@ -18,7 +18,7 @@ if( ${_OPT}use_wxwidgets STREQUAL "system" )
# Specify all of the components we'll need since "html" and "qa" aren't
# included in the default list
find_package(wxWidgets REQUIRED COMPONENTS adv base core html net qa)
find_package(wxWidgets REQUIRED COMPONENTS adv base core html net qa xml)
unset( BUILD_SHARED_LIBS )
endif()