Browse Source

Do not use cairo for windows cmake example plugins for now

Signed-off-by: falkTX <falktx@falktx.com>
pull/409/head
falkTX 2 years ago
parent
commit
1d7ce7ef8f
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      CMakeLists.txt

+ 2
- 2
CMakeLists.txt View File

@@ -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")


Loading…
Cancel
Save