Exclude is the correct term to use when removing paths from the list of checked items. Ignore as a term was a poor choise to begin with. XML file reading still recognizes and reads the 'ignore' element but writes 'exclude' element. Ticket: #2995 (GUI: Rename ignore-feature to exclude-feature)
21 lines
480 B
XML
21 lines
480 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project version="1">
|
|
<root name="."/>
|
|
<includedir>
|
|
<dir name="lib/"/>
|
|
<dir name="cli/"/>
|
|
<dir name="externals/"/>
|
|
<dir name="gui/temp/"/>
|
|
</includedir>
|
|
<paths>
|
|
<dir name="lib/"/>
|
|
<dir name="cli/"/>
|
|
<dir name="gui/"/>
|
|
<dir name="test/"/>
|
|
</paths>
|
|
<exclude>
|
|
<path name="gui/temp/"/>
|
|
<path name="test/test.cxx"/>
|
|
</exclude>
|
|
</project>
|