fix condition

This commit is contained in:
Sébastien Loriot 2024-08-30 16:17:38 +02:00
parent 04e90b7eb4
commit 21f0f805c7
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ create_single_source_cgal_program( "structuring_test.cpp" )
#Use LAS
#disable if MSVC 2017
if(NOT MSVC_VERSION OR (MSVC_VERSION GREATER_EQUAL 1919 AND MSVC_VERSION LESS 1910))
if(NOT MSVC_VERSION OR MSVC_VERSION GREATER_EQUAL 1919 OR MSVC_VERSION LESS 1910)
find_package(LASLIB)
include(CGAL_LASLIB_support)
if (TARGET CGAL::LASLIB_support)