We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dee4739 + 588e51f commit f7ee57bCopy full SHA for f7ee57b
Installation/src/CMakeLists.txt
@@ -7,7 +7,11 @@ function (collect_cgal_library LIBRARY_NAME ADDITIONAL_FILES)
7
# THEN collect *.cpp
8
foreach (package ${CGAL_CONFIGURED_PACKAGES} )
9
file(GLOB CGAL_LIBRARY_SOURCE_FILES_TMP ${package}/src/${LIBRARY_NAME}/*.cpp)
10
- list(APPEND CGAL_LIBRARY_SOURCE_FILES ${CGAL_LIBRARY_SOURCE_FILES_TMP})
+ foreach(file ${CGAL_LIBRARY_SOURCE_FILES_TMP})
11
+ if(NOT ${file} MATCHES "/qrc_.*")
12
+ list(APPEND CGAL_LIBRARY_SOURCE_FILES ${file})
13
+ endif()
14
+ endforeach()
15
endforeach()
16
17
foreach(source ${CGAL_LIBRARY_SOURCE_FILES})
0 commit comments