develop #15

Merged
cromer merged 64 commits from develop into master 2023-02-23 01:11:48 -03:00
2 changed files with 19 additions and 2 deletions
Showing only changes of commit bf5033c70d - Show all commits

View File

@ -29,5 +29,12 @@ if docs_enabled
endif
endif
subdir('lib')
subdir('src')
lib_enabled = get_option('lib')
if lib_enabled
subdir('lib')
endif
bin_enabled = get_option('bin')
if bin_enabled
subdir('src')
endif

View File

@ -1,3 +1,13 @@
option('bin',
type: 'boolean',
value: true,
description: 'Build the obelisk compiler'
)
option('lib',
type: 'boolean',
value: true,
description: 'Build the obelisk library'
)
option('docs',
type: 'boolean',
value: true,