Example #1
0
"""
The Sims 4 Community Library is licensed under the Creative Commons Attribution 4.0 International public license (CC BY 4.0).
https://creativecommons.org/licenses/by/4.0/
https://creativecommons.org/licenses/by/4.0/legalcode

Copyright (c) COLONOLNUTTY
"""
from Utilities.compiler import compile_module

compile_module(root='..\\Release\\Sims4CommunityLib',
               mod_scripts_folder='.',
               include_folders=('sims4communitylib', ),
               mod_name='sims4communitylib')
compile_module(root='..\\Release\\Sims4CommunityLibTests',
               mod_scripts_folder='.',
               include_folders=('s4cl_tests', ),
               mod_name='sims4communitylib_tests')
Example #2
0
"""
The Sims 4 Community Library is licensed under the Creative Commons Attribution 4.0 International public license (CC BY 4.0).
https://creativecommons.org/licenses/by/4.0/
https://creativecommons.org/licenses/by/4.0/legalcode

Copyright (c) COLONOLNUTTY
"""
import os
from Utilities.compiler import compile_module

release_dir = os.path.join('../', 'Release', 'Sims4CommunityLib')

compile_module(root=release_dir,
               mod_scripts_folder='.',
               include_folders=(
                   '_s4cl_ctypes_module',
                   'sims4communitylib',
               ),
               mod_name='sims4communitylib')
compile_module(root=f'{release_dir}Tests',
               mod_scripts_folder='.',
               include_folders=('s4cl_tests', ),
               mod_name='sims4communitylib_tests')
"""
This file is part of the Outfit Customization mod licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International public license (CC BY-NC-ND 4.0).
https://creativecommons.org/licenses/by-nc-nd/4.0/
https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode

Copyright (c) COLONOLNUTTY
"""
from Utilities.compiler import compile_module

# This will compile the files found within S4CLSampleModScripts/s4cl_sample_mod_scripts and put them inside of a file named s4cl_sample_mod.ts4script
compile_module(root='..\\..\\..\\Release\\CNOutfitCustomization',
               mod_scripts_folder='..',
               include_folders=('cnoutfitcustomization', ),
               mod_name='cn_outfitcustomization')
"""
This file is part of the Custom Gender Settings mod licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International public license (CC BY-NC-ND 4.0).
https://creativecommons.org/licenses/by-nc-nd/4.0/
https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode

Copyright (c) COLONOLNUTTY
"""

from Utilities.compiler import compile_module

compile_module(root='..\\..\\Release\\CNCustomGenderSettings',
               mod_scripts_folder='..',
               include_folders=('cncustomgendersettings', ),
               mod_name='cn_customgendersettings')
from Utilities.compiler import compile_module

# This will compile the files found within S4CLSampleModScripts/s4cl_sample_mod_scripts and put them inside of a file named s4cl_sample_mod.ts4script
compile_module(root='..\\..\\..\\Release\\S4CLSampleMod',
               mod_scripts_folder='..',
               include_folders=('s4cl_sample_mod_scripts', ),
               mod_name='s4cl_sample_mod')
Example #6
0
"""
This file is part of the The Sims 4 Mod Settings Menu licensed under the Creative Commons Attribution 4.0 International public license (CC BY 4.0).

https://creativecommons.org/licenses/by/4.0/
https://creativecommons.org/licenses/by/4.0/legalcode

Copyright (c) COLONOLNUTTY
"""
from Utilities.compiler import compile_module

compile_module(root='..\\Release\\Sims4ModSettingsMenu',
               mod_scripts_folder='.',
               include_folders=('sims4modsettingsmenu', ),
               mod_name='sims4modsettingsmenu')