mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-10 08:33: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:
@@ -1,23 +0,0 @@
|
||||
#directory lib-src/FileDialog
|
||||
|
||||
|
||||
set( SOURCES
|
||||
${LIB_SRC_DIRECTORY}FileDialog/FileDialog.cpp
|
||||
#${LIB_SRC_DIRECTORY}FileDialog/gtk/FileDialogPrivate.cpp #not on windows.
|
||||
${LIB_SRC_DIRECTORY}FileDialog/win/FileDialogPrivate.cpp
|
||||
)
|
||||
|
||||
|
||||
project (FileDialog)
|
||||
add_library( FileDialog STATIC ${SOURCES})
|
||||
find_package(wxWidgets REQUIRED COMPONENTS net core base)
|
||||
include( ${wxWidgets_USE_FILE} )
|
||||
target_include_directories( FileDialog PRIVATE
|
||||
#${wxWidgets_INCLUDE_DIRS}
|
||||
${top_dir}/FileDialog
|
||||
${top_dir}/FileDialog/win
|
||||
)
|
||||
add_definitions( -DWXUSINGDLL -DWIN32 -D_LIB
|
||||
#${wxWidgets_DEFINITIONS}
|
||||
)
|
||||
target_link_libraries(FileDialog ${wxWidgets_LIBRARIES})
|
@@ -1,10 +0,0 @@
|
||||
#directory lib-src/mod-script-pipe
|
||||
project (mod-script-pipe)
|
||||
find_package(wxWidgets REQUIRED COMPONENTS net core base)
|
||||
include(${wxWidgets_USE_FILE})
|
||||
include_directories(${install_dir}../../win)
|
||||
|
||||
# This defines the #define on both Windows and Linux.
|
||||
add_definitions( -DBUILDING_SCRIPT_PIPE )
|
||||
add_library( mod-script-pipe MODULE PipeServer.cpp ScripterCallback.cpp)
|
||||
target_link_libraries(mod-script-pipe ${wxWidgets_LIBRARIES})
|
Reference in New Issue
Block a user