commit 1d7ce7ef8f184f90da11a92c689632a639b1af86
parent 106a8575205d6f0d772be64fd3880576146c8b1f
Author: falkTX <falktx@falktx.com>
Date: Sat, 19 Nov 2022 22:29:57 +0000
Do not use cairo for windows cmake example plugins for now
Signed-off-by: falkTX <falktx@falktx.com>
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
@@ -29,14 +29,14 @@ list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
include(DPF-plugin)
if(DPF_LIBRARIES)
- if(NOT (MSVC OR APPLE)) # TODO skip this one for now
+ if(NOT (WIN32 OR APPLE)) # TODO skip this one for now
dpf__add_dgl_cairo(FALSE)
endif()
dpf__add_dgl_opengl(FALSE)
endif()
if(DPF_EXAMPLES)
- if(NOT (MSVC OR APPLE)) # TODO skip this one for now
+ if(NOT (WIN32 OR APPLE)) # TODO skip this one for now
add_subdirectory("examples/CairoUI")
endif()
#add_subdirectory("examples/ExternalUI")