Skip to content
Snippets Groups Projects
Commit 49bce394 authored by Henry Weller's avatar Henry Weller
Browse files

PV*Readers/Allwmake: set CXX and CC if required

Patch contributed by Bruno Santos
Resolves bug-report http://bugs.openfoam.org/view.php?id=2233
parent 8f2b34dc
Branches
Tags
No related merge requests found
......@@ -14,7 +14,8 @@ case "$ParaView_VERSION" in
exit 1
}
# ensure CMake gets the correct C++ compiler
# ensure CMake gets the correct C/C++ compilers
[ -n "$WM_CC" ] && export CC="$WM_CC"
[ -n "$WM_CXX" ] && export CXX="$WM_CXX"
wmake $targetType vtkPV3Readers
......
......@@ -14,7 +14,8 @@ case "$ParaView_VERSION" in
exit 1
}
# ensure CMake gets the correct C++ compiler
# ensure CMake gets the correct C/C++ compilers
[ -n "$WM_CC" ] && export CC="$WM_CC"
[ -n "$WM_CXX" ] && export CXX="$WM_CXX"
wmake $targetType vtkPVReaders
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment