mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-29 14:00:49 +03:00
0024331: CMake scripts improvements
prefix '3RDPARTY' from variables that trigger use of 3rd-party products removed help strings associated with CMake variables revised identification of Tcl8.6 libraries enables invariable cmake files moved from wok to adm/templates folder RELWITHDEBINFO build configuration added BUILD_TYPE variable was renamed in BUILD_CONFIGURATION copy just TObj/TObj.msg instead of TObj folder Option /fp:precise for Visual Studio projects set Update of documentation for building with CMake; three warnings appeared in VS projects built by CMake corrected
This commit is contained in:
@@ -55,7 +55,7 @@ Standard_Integer TestTopOpeTools_Trace::SetVerbose
|
||||
Standard_Integer TestTopOpeTools_Trace::SetVerbose
|
||||
(const t_flag flag,const Standard_Boolean b)
|
||||
{
|
||||
Standard_Integer index;
|
||||
Standard_Integer index = 0;
|
||||
if ( !Exist(flag,index) ) return 1;
|
||||
if (b) cout<<"set "<<mygenre<<" "<<flag<<" verbose"<<endl;
|
||||
else cout<<"set "<<mygenre<<" "<<flag<<" not verbose"<<endl;
|
||||
@@ -66,7 +66,7 @@ Standard_Integer TestTopOpeTools_Trace::SetVerbose
|
||||
Standard_Integer TestTopOpeTools_Trace::Set
|
||||
(const Standard_Integer mute,const t_flag flag,const t_value value)
|
||||
{
|
||||
Standard_Integer index;
|
||||
Standard_Integer index = 0;
|
||||
if ( !Exist(flag,index) ) return 1;
|
||||
if (mute==0) {
|
||||
if (value) cout<<"activation de "<<mygenre<<" "<<flag<<endl;
|
||||
@@ -88,7 +88,7 @@ Standard_Integer TestTopOpeTools_Trace::Set
|
||||
(const Standard_Integer mute,const t_flag flag, const t_value value,
|
||||
Standard_Integer n, const char** a)
|
||||
{
|
||||
Standard_Integer index;
|
||||
Standard_Integer index = 0;
|
||||
if ( !Exist(flag,index) ) return 1;
|
||||
if ( Getftyp(index) == te_intarg ) {
|
||||
(*((tf_intarg)Getfunc(index)))(value,n,a);
|
||||
|
Reference in New Issue
Block a user