Move coide into its own directory

pull/3660/head
Jimmy Brisson 2017-01-17 12:12:24 -06:00 committed by Anna Bridge
parent a9e4180bf7
commit 60dab4d30d
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)