diff --git a/CMakeLists.txt b/CMakeLists.txt index 2541660d..85b18ac5 100644 --- 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")