package ZynAddSubFX into win32 build

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1697 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-09-22 23:48:13 +00:00
parent 782fd7de09
commit eb2f5e9cc2
2 changed files with 16 additions and 0 deletions

View File

@@ -389,6 +389,7 @@ ENDIF(WIN32)
ADD_SUBDIRECTORY(plugins)
ADD_SUBDIRECTORY(data)
#
# build LMMS-binary
#
@@ -447,6 +448,14 @@ INSTALL(FILES ${CMAKE_SOURCE_DIR}/src/3rdparty/samplerate/samplerate.h DESTINATI
ENDIF(NOT LMMS_HAVE_SAMPLERATE)
ENDIF(LMMS_BUILD_LINUX)
# package ZynAddSubFX into win32 build
IF(LMMS_BUILD_WIN32)
IF(EXISTS ${CMAKE_SOURCE_DIR}/extras)
ADD_SUBDIRECTORY(${CMAKE_SOURCE_DIR}/extras/data/presets)
FILE(GLOB ZASF_BINARIES ${CMAKE_SOURCE_DIR}/extras/plugins/zynaddsubfx/zynaddsubfx.dll ${CMAKE_SOURCE_DIR}/extras/plugins/zynaddsubfx/remote_zynaddsubfx.exe)
INSTALL(FILES ${ZASF_BINARIES} DESTINATION ${PLUGIN_DIR})
ENDIF(EXISTS ${CMAKE_SOURCE_DIR}/extras)
ENDIF(LMMS_BUILD_WIN32)
#
# add distclean-target

View File

@@ -1,5 +1,12 @@
2008-09-22 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* CMakeLists.txt:
package ZynAddSubFX into win32 build
* plugins/vst_base/remote_vst_plugin.cpp:
* include/remote_plugin.h:
made remotePluginClient::process() have no return value
* src/core/main.cpp:
* data/locale/CMakeLists.txt:
install and load Qt translation files on win32