Updated/fixed init script.

This commit is contained in:
Patrick 2025-06-06 17:40:48 +02:00
parent d9371e9cd4
commit ef634524c2
3 changed files with 26 additions and 12 deletions

View File

@ -1,5 +1,5 @@
config = { config = {
'PROJECT_NAME': 'spp_template' 'PROJECT_NAME': '@PROJECT_NAME@'
} }
env = SConscript('external/scons-plus-plus/SConscript', exports = ['config']) env = SConscript('external/scons-plus-plus/SConscript', exports = ['config'])
env.Append(CPPPATH = [Dir('private'), Dir('public')]) env.Append(CPPPATH = [Dir('private'), Dir('public')])
@ -9,6 +9,6 @@ env.RecipeRepo('mewin-stable', 'https://git.mewin.de/mewin/spp_recipes.git', 'st
# env.RecipeRepo('mewin-testing', 'https://git.mewin.de/mewin/spp_recipes.git', 'testing') # env.RecipeRepo('mewin-testing', 'https://git.mewin.de/mewin/spp_recipes.git', 'testing')
# app # app
env = env.Module('private/spp_template/SModule') env = env.Module('private/@MODULE_FOLDER_NAME@/SModule')
env.Finalize() env.Finalize()

View File

@ -6,8 +6,8 @@ src_files = Split("""
""") """)
prog_app = env.UnityProgram( prog_app = env.UnityProgram(
name = 'Template', name = '%MODULE_NAME%',
target = env['BIN_DIR'] + '/spp_template', target = env['BIN_DIR'] + '/%EXE_NAME%',
source = src_files, source = src_files,
dependencies = { dependencies = {
'mijin': {} 'mijin': {}

View File

@ -111,15 +111,29 @@ def setup_project() -> None:
_logger.info('Creating a git commit for the setup.') _logger.info('Creating a git commit for the setup.')
_exec_checked(['git', 'commit', '-m', 'Project setup', 'SConstruct', 'private']) _exec_checked(['git', 'commit', '-m', 'Project setup', 'SConstruct', 'private'])
def setup_git_remote() -> None:
current_url = _exec_get_output(['git', 'remote', 'get-url', 'origin'])
if 'spp_template' not in current_url:
_logger.debug('Remote already set up.')
return
remote_url = ''
while remote_url == '':
print('Please enter a new URL for your git remote.')
remote_url = _prompt().strip()
_exec_checked(['git', 'remote', 'set-url', 'origin', remote_url])
if __name__ == '__main__': if __name__ == '__main__':
logging.basicConfig(level=logging.DEBUG, format='%(message)s') logging.basicConfig(level=logging.DEBUG, format='%(message)s')
_root = Path(__file__).parent.parent _root = Path(__file__).parent.parent
os.chdir(_root) os.chdir(_root)
#try: try:
verify_tools() verify_tools()
download_spp() download_spp()
update_spp() update_spp()
setup_project() setup_project()
#except Exception as e: setup_git_remote()
# _logger.error('There was an error running the script: %s.', e) except Exception as e:
# sys.exit(1) _logger.error('There was an error running the script: %s.', e)
sys.exit(1)