summaryrefslogtreecommitdiffstats
path: root/languages
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-10-27 13:06:53 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-10-27 13:06:53 +0900
commit31af8fa045de34407fbe0beda3ad65afaf0080d2 (patch)
treeca111326f2fd3f4f60333131c272ab25fa133dc6 /languages
parent137a74149e678345cc799dc181732824fc9bb24d (diff)
downloadtdevelop-31af8fa045de34407fbe0beda3ad65afaf0080d2.tar.gz
tdevelop-31af8fa045de34407fbe0beda3ad65afaf0080d2.zip
Drop Borland compiler specific code
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'languages')
-rw-r--r--languages/cpp/main.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/languages/cpp/main.cpp b/languages/cpp/main.cpp
index 7ec48cfa..f790861e 100644
--- a/languages/cpp/main.cpp
+++ b/languages/cpp/main.cpp
@@ -132,20 +132,6 @@ public:
}
}
- else if ( qmakespec == "win32-borland" )
- {
- TQString incl = getenv( "INCLUDE" );
- TQStringList includePaths = TQStringList::split( ';', incl );
- TQStringList::Iterator it = includePaths.begin();
- while ( it != includePaths.end() )
- {
- addIncludePath( ( *it ).stripWhiteSpace() );
- ++it;
- }
- // ### I am sure there are more standard include paths on
- // ### windows. I will fix that soon
- // ### Also do the compiler specific defines on windows
- }
}
private: