From c7c5e692d326535d0265eedfca94e93a73be573b Mon Sep 17 00:00:00 2001 From: Stinkfist0 Date: Tue, 22 Aug 2017 14:50:51 +0300 Subject: [PATCH] IfcConvert --version: print also OCC version. --- src/ifcconvert/IfcConvert.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcconvert/IfcConvert.cpp b/src/ifcconvert/IfcConvert.cpp index bfaf623ff1..0c8c40c0dc 100644 --- a/src/ifcconvert/IfcConvert.cpp +++ b/src/ifcconvert/IfcConvert.cpp @@ -56,7 +56,7 @@ namespace po = boost::program_options; void print_version() { - std::cout << "IfcOpenShell " << IfcSchema::Identifier << " IfcConvert " << IFCOPENSHELL_VERSION << std::endl; + std::cout << "IfcOpenShell " << IfcSchema::Identifier << " IfcConvert " << IFCOPENSHELL_VERSION << " (OCC " << OCC_VERSION_STRING_EXT << ")\n"; } void print_usage(bool suggest_help = true)