1
0
Эх сурвалжийг харах

[tools] change the cpp eclipse project check function.

armink 5 жил өмнө
parent
commit
06579a46ed
1 өөрчлөгдсөн 3 нэмэгдсэн , 5 устгасан
  1. 3 5
      tools/eclipse.py

+ 3 - 5
tools/eclipse.py

@@ -20,6 +20,8 @@ from utils import xml_indent
 import xml.etree.ElementTree as etree
 from xml.etree.ElementTree import SubElement
 
+from building import *
+
 MODULE_VER_NUM = 0
 
 source_pattern = ['*.c', '*.cpp', '*.cxx', '*.s', '*.S', '*.asm']
@@ -139,11 +141,7 @@ def IsRttEclipsePathFormat(path):
     
     
 def IsCppProject():
-    with open('.project', mode = 'r') as f:
-        for line in f.readlines():
-            if line.find('org.eclipse.cdt.core.ccnature') != -1:
-                return True
-    return False
+    return GetDepend('RT_USING_CPLUSPLUS')
 
         
 def HandleToolOption(tools, env, project, reset):