Fix disabling src docs build on Windows

As it was written it also prevented building source docs on other platforms, causing
cmake warnings and a failed dist build.
This commit is contained in:
Geert Janssens 2017-10-25 20:30:41 +02:00
parent 1238b9d8cd
commit 7cb59aafe8

View File

@ -1,4 +1,4 @@
if (!WIN32)
if (NOT WIN32)
ADD_SUBDIRECTORY(design)
endif()
ADD_SUBDIRECTORY(xml)