Move sw4stm32 into its own dir

pull/3660/head
Jimmy Brisson 2017-01-17 12:31:56 -06:00 committed by Anna Bridge
parent a9056d7e75
commit 063a144b75
4 changed files with 4 additions and 4 deletions

View File

@ -14,10 +14,10 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
""" """
from exporters import Exporter
from os.path import splitext, basename, join from os.path import splitext, basename, join
from random import randint from random import randint
from tools.utils import mkdir from tools.utils import mkdir
from tools.export.exporters import Exporter
class Sw4STM32(Exporter): class Sw4STM32(Exporter):
@ -114,6 +114,6 @@ class Sw4STM32(Exporter):
} }
self.__gen_dir('.settings') self.__gen_dir('.settings')
self.gen_file('sw4stm32_language_settings_commom.tmpl', ctx, '.settings/language.settings.xml') self.gen_file('sw4stm32/language_settings_commom.tmpl', ctx, '.settings/language.settings.xml')
self.gen_file('sw4stm32_project_common.tmpl', ctx, '.project') self.gen_file('sw4stm32/project_common.tmpl', ctx, '.project')
self.gen_file('sw4stm32_cproject_common.tmpl', ctx, '.cproject') self.gen_file('sw4stm32/cproject_common.tmpl', ctx, '.cproject')