Hi
I see you added the Cmake files, thank you very much. One improvement would be
to make the SimpleViewer optional, as I integrate IFC in my CMake build process
by EXTERNALPROJECT_ADD. So as I have my own application and don't use Qt, I
need a way to only build the framework. The easiest would be to introduce an
option for the viewer. This would look like this in your root CMakeLists.txt:
...
ENDIF(NOT CARVE_BINARY_DIR)
message(STATUS
"------------------------------------------------------------------------")
OPTION(BUILD_SIMPLEVIEWER "Build the simple viewer example applilcation" ON)
add_subdirectory (Carve)
add_subdirectory (IfcPlusPlus)
add_subdirectory (IfcPlusPlusGeometry)
IF(BUILD_SIMPLEVIEWER)
add_subdirectory (SimpleViewer)
ENDIF()
Would it be possible to integrate this (or something similar)?
Thanks for the great work
Original issue reported on code.google.com by robert.h...@gmail.com on 8 Jul 2014 at 12:21
Original issue reported on code.google.com by
robert.h...@gmail.com
on 8 Jul 2014 at 12:21