Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix for build with -DPLUGIN_UI=ALL #185

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion avidemux_plugins/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -126,14 +126,15 @@ SET(DO_CLI 0)
SET(DO_SETTINGS 0)

IF (NOT PLUGIN_UI)
MESSAGE(FATAL_ERROR "Please add -DPLUGIN_UI=[ALL|QT4|GTK|CLI|COMMON]")
MESSAGE(FATAL_ERROR "Please add -DPLUGIN_UI=[ALL|QT4|GTK|CLI|COMMON|SETTINGS]")
ENDIF (NOT PLUGIN_UI)

if(PLUGIN_UI MATCHES "ALL")
SET(DO_COMMON 1)
SET(DO_GTK 1)
SET(DO_QT4 1)
SET(DO_CLI 1)
SET(DO_SETTINGS 1)
endif(PLUGIN_UI MATCHES "ALL")

if(PLUGIN_UI MATCHES "QT4")
Expand Down Expand Up @@ -267,7 +268,9 @@ ENDIF(DO_COMMON)
ADD_SUBDIRECTORY(ADM_videoEncoder)
ADD_SUBDIRECTORY(ADM_videoFilters6)
IF(DO_QT4)
IF(NOT DO_COMMON)
add_subdirectory(ADM_demuxers/VapourSynth)
ENDIF(NOT DO_COMMON)
# add_subdirectory(ADM_scriptEngines)
#IF(USE_OPENGL AND NOT WIN32)
IF(USE_OPENGL )
Expand Down