summaryrefslogtreecommitdiffstats
path: root/languages/cpp
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-31 17:04:32 +0900
commit423172b6620ea2c76d055a42b947e6332b8a1d92 (patch)
tree1047c8cfde695449a41d46313a7ee0caca710135 /languages/cpp
parentfa6cb919b37c540bcd4f81699fef1193ac0dc458 (diff)
downloadtdevelop-423172b6620ea2c76d055a42b947e6332b8a1d92.tar.gz
tdevelop-423172b6620ea2c76d055a42b947e6332b8a1d92.zip
Drop Borland compiler specific code
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 31af8fa045de34407fbe0beda3ad65afaf0080d2)
Diffstat (limited to 'languages/cpp')
-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: