1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-17 17:26:48 +02:00
Be b1549dd13e
CMake: replace Conan with find_package and add find modules
Also, necessarily coupled with this:
* add CMakeLists.txt for vendored libnyquist
* fix SoundTouch header include paths
* move nyq_reformat_aud_do_response function
* handle portSMF headers installed to portsmf or portSMF

Signed-off-by: Be <be@mixxx.org>
2021-08-16 13:22:01 -05:00

28 lines
409 B
CMake

set(TARGET lib-string-utils)
set(TARGET_ROOT ${CMAKE_CURRENT_SOURCE_DIR} )
def_vars()
set(SOURCES
HexHelpers.h
UrlEncode.h
UrlEncode.cpp
UrlDecode.h
UrlDecode.cpp
CodeConversions.h
CodeConversions.cpp
DateTimeConversions.h
DateTimeConversions.cpp
)
set( LIBRARIES
PRIVATE
wxWidgets::wxWidgets
)
audacity_library( ${TARGET} "${SOURCES}" "${LIBRARIES}" "" "" )