-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.wiswa.jsonnet
More file actions
42 lines (42 loc) · 1.23 KB
/
Copy path.wiswa.jsonnet
File metadata and controls
42 lines (42 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
uses_user_defaults: true,
project_type: 'c',
project_name: 'libtether',
version: '0.0.1',
security_policy_supported_versions: { '0.0.x': ':white_check_mark:' },
description: 'Programmatically attach a DMG without a hdiutil subprocess.',
keywords: ['dmg', 'disk image', 'diskarbitration', 'diskimages', 'hdiutil', 'macos'],
want_main: false,
// The tests are C/cmocka, not the Python suite wiswa would scaffold; tests.yml is maintained by
// hand in this project.
want_tests: false,
// No WinGet publishing; this is a macOS-only project.
want_winget: false,
clang_format_args: 'include/*.h src/*.c tools/*.c tests/*.c tests/*.h',
// Keep LIBTETHER_VERSION in the public header in sync on release bumps.
cz+: {
commitizen+: {
version_files+: ['include/libtether.h'],
},
},
vcpkg+: {
dependencies+: ['cmocka'],
},
vscode+: {
c_cpp+: {
configurations: [
{
cStandard: 'gnu17',
compilerPath: '/usr/bin/clang',
cppStandard: 'gnu++17',
includePath: [
'${workspaceFolder}/include/**',
'${workspaceFolder}/src/**',
'${workspaceFolder}/tools/**',
],
name: 'Mac',
},
],
},
},
}