Move coide into its own directory

pull/3601/head
Jimmy Brisson 2017-01-17 12:12:24 -06:00
parent 17f691c54f
commit 13b2a95d3a
34 changed files with 3 additions and 2 deletions

View File

@ -14,9 +14,10 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
from exporters import Exporter
from os.path import splitext, basename
from tools.export.exporters import Exporter
class CoIDE(Exporter):
NAME = 'CoIDE'
@ -112,4 +113,4 @@ class CoIDE(Exporter):
target = self.target.lower()
# Project file
self.gen_file('coide_%s.coproj.tmpl' % target, ctx, '%s.coproj' % self.project_name)
self.gen_file('coide/%s.coproj.tmpl' % target, ctx, '%s.coproj' % self.project_name)