indent json according to my personal taste

This commit is contained in:
Paolo Marrone 2024-07-30 15:16:11 +02:00
parent 7302a19c23
commit cc1ecbf678
10 changed files with 33 additions and 32 deletions

View File

@ -1,21 +1,21 @@
{ {
"android_make": { "android_make": {
"cxxflags": "-I../../../miniaudio", "cxxflags" : "-I../../../miniaudio",
"keyStore": "keystore.jks", "keyStore" : "keystore.jks",
"keyAlias": "androidkey", "keyAlias" : "androidkey",
"storePass": "android", "storePass" : "android",
"keyPass": "android", "keyPass" : "android",
"sdkDir": "${HOME}/Android/Sdk", "sdkDir" : "${HOME}/Android/Sdk",
"ndkVersion": "27.0.11902837", "ndkVersion" : "27.0.11902837",
"buildToolsVersion": "35.0.0", "buildToolsVersion" : "35.0.0",
"androidxDir": "${HOME}/Android/androidx", "androidxDir" : "${HOME}/Android/androidx",
"kotlinDir": "${HOME}/Android/kotlin", "kotlinDir" : "${HOME}/Android/kotlin",
"androidVersion": "35", "androidVersion" : "35",
"androidxCoreVersion": "1.13.1", "androidxCoreVersion" : "1.13.1",
"androidxLifecycleCommonVersion": "2.8.3", "androidxLifecycleCommonVersion" : "2.8.3",
"androidxVersionedparcelableVersion": "1.2.0", "androidxVersionedparcelableVersion" : "1.2.0",
"kotlinStdlibVersion": "2.0.0", "kotlinStdlibVersion" : "2.0.0",
"kotlinxCoroutinesCoreVersion": "1.8.0", "kotlinxCoroutinesCoreVersion" : "1.8.0",
"kotlinxCoroutinesCoreJVMVersion": "1.8.1" "kotlinxCoroutinesCoreJVMVersion" : "1.8.1"
} }
} }

View File

@ -1,5 +1,5 @@
{ {
"android": { "android": {
"javaPackageName": "com.example.tibia_test" "javaPackageName" : "com.example.tibia_test"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"cmd_make": { "cmd_make": {
"tinywavDir": "../../../tinywav", "tinywavDir" : "../../../tinywav",
"midiParserDir": "../../../midi-parser" "midiParserDir" : "../../../midi-parser"
} }
} }

View File

@ -1,7 +1,8 @@
{ {
"company": { "company": {
"name": "Example company", "name": "Example company",
"url": "https://www.example.com/", "url": "https://www.example.com/",
"email": "info@example.com" "email": "info@example.com",
"domain": "com.example"
} }
} }

View File

@ -1,5 +1,5 @@
{ {
"daisy_seed_make": { "daisy_seed_make": {
"libdaisyDir": "../../../libDaisy" "libdaisyDir" : "../../../libDaisy"
} }
} }

View File

@ -1,5 +1,5 @@
{ {
"daisy_seed": { "daisy_seed": {
"parameterPins": [ 15, 16, 17, 18, 22 ] "parameterPins" : [ 15, 16, 17, 18, 22 ]
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"ios_make": { "ios_make": {
"headerSearchPaths": [ "../../../../../miniaudio" ], "headerSearchPaths" : [ "../../../../../miniaudio" ],
"deploymentTarget": 16.6 "deploymentTarget" : 16.6
} }
} }

View File

@ -1,5 +1,5 @@
{ {
"ios": { "ios": {
"productBundleIdentifier": "com.example.tibia-test" "productBundleIdentifier" : "com.example.tibia-test"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"lv2_make": { "lv2_make": {
"cflags": "$(shell pkg-config --cflags pugl-cairo-0 pugl-0 cairo)", "cflags" : "$(shell pkg-config --cflags pugl-cairo-0 pugl-0 cairo)",
"ldflags": "$(shell pkg-config --libs pugl-cairo-0 pugl-0 cairo) -Wl,-rpath,$(shell pkg-config --variable=libdir pugl-cairo-0),-rpath,$(shell pkg-config --variable=libdir pugl-0),-rpath,$(shell pkg-config --variable=libdir cairo)" "ldflags" : "$(shell pkg-config --libs pugl-cairo-0 pugl-0 cairo) -Wl,-rpath,$(shell pkg-config --variable=libdir pugl-cairo-0),-rpath,$(shell pkg-config --variable=libdir pugl-0),-rpath,$(shell pkg-config --variable=libdir cairo)"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"vst3_make": { "vst3_make": {
"cflags": "-I../../../vst3_c_api $(shell pkg-config --cflags pugl-cairo-0)", "cflags" : "-I../../../vst3_c_api $(shell pkg-config --cflags pugl-cairo-0)",
"ldflags": "$(shell pkg-config --libs pugl-cairo-0 pugl-0 cairo) -Wl,-rpath,$(shell pkg-config --variable=libdir pugl-cairo-0),-rpath,$(shell pkg-config --variable=libdir pugl-0),-rpath,$(shell pkg-config --variable=libdir cairo)" "ldflags" : "$(shell pkg-config --libs pugl-cairo-0 pugl-0 cairo) -Wl,-rpath,$(shell pkg-config --variable=libdir pugl-cairo-0),-rpath,$(shell pkg-config --variable=libdir pugl-0),-rpath,$(shell pkg-config --variable=libdir cairo)"
} }
} }