VLD, not VLC...

This commit is contained in:
Stinkfist0
2016-02-07 12:28:05 +02:00
parent 450baf224f
commit 61ccd8a7cf
5 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -28,7 +28,7 @@ OPTION(ENABLE_BUILD_OPTIMIZATIONS "Enable certain compiler and linker optimizati
OPTION(USE_IFC4 "Use IFC 4 instead of IFC 2x3 (full rebuild recommended when switching this)" OFF)
OPTION(BUILD_IFCPYTHON "Build IfcPython." ON)
OPTION(BUILD_EXAMPLES "Build example applications." ON)
OPTION(USE_VLC "Use Visual Leak Detector for debugging memory leaks, MSVC-only." OFF)
OPTION(USE_VLD "Use Visual Leak Detector for debugging memory leaks, MSVC-only." OFF)
# TODO QtViewer is deprecated ATM as it uses the 0.4 API
# OPTION(BUILD_QTVIEWER "Build IfcOpenShell Qt GUI Viewer (requires Qt 4 framework)." OFF)
@@ -238,8 +238,8 @@ if(ENABLE_BUILD_OPTIMIZATIONS)
endif()
IF(MSVC)
IF(USE_VLC)
ADD_DEFINITIONS(-DUSE_VLC)
IF(USE_VLD)
ADD_DEFINITIONS(-DUSE_VLD)
ENDIF()
# Enforce Unicode for CRT and Win32 API calls
ADD_DEFINITIONS(-D_UNICODE -DUNICODE)
+1 -1
View File
@@ -41,7 +41,7 @@
#include "../ifcparse/IfcHierarchyHelper.h"
#include "../ifcgeom/IfcGeom.h"
#if USE_VLC
#if USE_VLD
#include <vld.h>
#endif
+1 -1
View File
@@ -19,7 +19,7 @@
#include "../ifcparse/IfcFile.h"
#if USE_VLC
#if USE_VLD
#include <vld.h>
#endif
+1 -1
View File
@@ -46,7 +46,7 @@
#include <IGESControl_Controller.hxx>
#include <Standard_Version.hxx>
#if USE_VLC
#if USE_VLD
#include <vld.h>
#endif
+1 -1
View File
@@ -37,7 +37,7 @@
#include "../ifcgeom/IfcGeomIterator.h"
#if USE_VLC
#if USE_VLD
#include <vld.h>
#endif