Skip to content

Commit 135adc7

Browse files
committed
fix warning, improve cmake messages
1 parent 017faa9 commit 135adc7

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

cmake/schema_scanner/schemaScanner.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
# this makes compilation faster, but sometimes runs into compiler limitations
1313
if(NOT DEFINED SC_UNITY_BUILD)
1414
if(BORLAND)
15-
message( STATUS "Will not do unity build for this compiler.")
15+
message( STATUS "Will not do unity build for this compiler. (SC_UNITY_BUILD=FALSE)")
1616
set(SC_UNITY_BUILD FALSE)
1717
else()
18-
message( STATUS "Assuming compiler is capable of unity build.")
18+
message( STATUS "Assuming compiler is capable of unity build. (SC_UNITY_BUILD=TRUE)")
1919
set(SC_UNITY_BUILD TRUE)
2020
endif(BORLAND)
21-
message( STATUS "Override by setting SC_UNITY_BUILD; TRUE will result in *huge* translation units, higher memory use in compilation, and faster build times.")
21+
message( STATUS "Override by setting SC_UNITY_BUILD; TRUE will result in faster build times but *huge* translation units and higher memory use in compilation.")
2222
else(NOT DEFINED SC_UNITY_BUILD)
2323
message( STATUS "Respecting user-defined SC_UNITY_BUILD value of ${SC_UNITY_BUILD}.")
2424
endif(NOT DEFINED SC_UNITY_BUILD)

test/cpp/schema_specific/aggregate_bound_runtime.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11

2-
#include "sc_version_string.h"
32
#include <STEPfile.h>
43
#include <sdai.h>
54
#include <STEPattribute.h>

0 commit comments

Comments
 (0)