sh_cpl/src/cpl_cli/configuration/build_settings_name_enum.py

15 lines
337 B
Python
Raw Normal View History

2021-03-08 20:29:08 +01:00
from enum import Enum
2021-03-13 22:53:28 +01:00
class BuildSettingsNameEnum(Enum):
2021-03-08 20:29:08 +01:00
2021-03-30 11:53:07 +02:00
project_type = 'ProjectType'
2021-03-09 21:07:47 +01:00
source_path = 'SourcePath'
output_path = 'OutputPath'
2021-03-08 20:49:26 +01:00
main = 'Main'
entry_point = 'EntryPoint'
include_package_data = 'IncludePackageData'
included = 'Included'
excluded = 'Excluded'
2021-03-09 21:07:47 +01:00
package_data = 'PackageData'