@4players/odin-nodejs 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.idea/.name +1 -0
- package/.idea/jsLibraryMappings.xml +6 -0
- package/.idea/misc.xml +4 -0
- package/.idea/modules.xml +9 -0
- package/.idea/odin-nodejs.iml +8 -0
- package/.idea/odin_nodejs.iml +2 -0
- package/.idea/php.xml +19 -0
- package/.idea/vcs.xml +6 -0
- package/CMakeLists.txt +25 -0
- package/README.md +53 -0
- package/binding.gyp +61 -0
- package/build/Makefile +352 -0
- package/build/Release/.deps/Release/nothing.a.d +1 -0
- package/build/Release/.deps/Release/obj.target/nothing/node_modules/node-addon-api/nothing.o.d +4 -0
- package/build/Release/.deps/Release/obj.target/odin/cppsrc/binding.o.d +27 -0
- package/build/Release/.deps/Release/obj.target/odin/cppsrc/odinbindings.o.d +24 -0
- package/build/Release/.deps/Release/obj.target/odin/cppsrc/odinclient.o.d +24 -0
- package/build/Release/.deps/Release/obj.target/odin/cppsrc/odinmedia.o.d +24 -0
- package/build/Release/.deps/Release/obj.target/odin/cppsrc/odinroom.o.d +24 -0
- package/build/Release/.deps/Release/obj.target/odin/cppsrc/utilities.o.d +21 -0
- package/build/Release/.deps/Release/odin.node.d +1 -0
- package/build/Release/nothing.a +0 -0
- package/build/Release/obj.target/nothing/node_modules/node-addon-api/nothing.o +0 -0
- package/build/Release/obj.target/odin/cppsrc/binding.o +0 -0
- package/build/Release/obj.target/odin/cppsrc/odinbindings.o +0 -0
- package/build/Release/obj.target/odin/cppsrc/odinclient.o +0 -0
- package/build/Release/obj.target/odin/cppsrc/odinmedia.o +0 -0
- package/build/Release/obj.target/odin/cppsrc/odinroom.o +0 -0
- package/build/Release/obj.target/odin/cppsrc/utilities.o +0 -0
- package/build/binding.Makefile +6 -0
- package/build/gyp-mac-tool +772 -0
- package/build/node_modules/node-addon-api/node_api.Makefile +6 -0
- package/build/node_modules/node-addon-api/nothing.target.mk +186 -0
- package/build/odin.target.mk +201 -0
- package/cmake-build-debug/.cmake/api/v1/query/cache-v2 +0 -0
- package/cmake-build-debug/.cmake/api/v1/query/cmakeFiles-v1 +0 -0
- package/cmake-build-debug/.cmake/api/v1/query/codemodel-v2 +0 -0
- package/cmake-build-debug/.cmake/api/v1/query/toolchains-v1 +0 -0
- package/cmake-build-debug/.cmake/api/v1/reply/cache-v2-912a6d0c3c2c7ebbadf8.json +1183 -0
- package/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-0825651e80f1fb47890c.json +161 -0
- package/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-bc24edc239de864eb886.json +60 -0
- package/cmake-build-debug/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +14 -0
- package/cmake-build-debug/.cmake/api/v1/reply/index-2023-03-18T11-25-22-0179.json +108 -0
- package/cmake-build-debug/.cmake/api/v1/reply/target-odin_nodejs-Debug-1ac16802f252a85492c7.json +322 -0
- package/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-b57293a485ebf36c82cc.json +88 -0
- package/cmake-build-debug/.ninja_log +1 -0
- package/cmake-build-debug/CMakeCache.txt +367 -0
- package/cmake-build-debug/CMakeFiles/3.24.2/CMakeCCompiler.cmake +72 -0
- package/cmake-build-debug/CMakeFiles/3.24.2/CMakeCXXCompiler.cmake +83 -0
- package/cmake-build-debug/CMakeFiles/3.24.2/CMakeDetermineCompilerABI_C.bin +0 -0
- package/cmake-build-debug/CMakeFiles/3.24.2/CMakeDetermineCompilerABI_CXX.bin +0 -0
- package/cmake-build-debug/CMakeFiles/3.24.2/CMakeSystem.cmake +15 -0
- package/cmake-build-debug/CMakeFiles/3.24.2/CompilerIdC/CMakeCCompilerId.c +838 -0
- package/cmake-build-debug/CMakeFiles/3.24.2/CompilerIdC/CMakeCCompilerId.o +0 -0
- package/cmake-build-debug/CMakeFiles/3.24.2/CompilerIdCXX/CMakeCXXCompilerId.cpp +826 -0
- package/cmake-build-debug/CMakeFiles/3.24.2/CompilerIdCXX/CMakeCXXCompilerId.o +0 -0
- package/cmake-build-debug/CMakeFiles/CMakeError.log +22 -0
- package/cmake-build-debug/CMakeFiles/CMakeOutput.log +250 -0
- package/cmake-build-debug/CMakeFiles/TargetDirectories.txt +3 -0
- package/cmake-build-debug/CMakeFiles/clion-Debug-log.txt +4 -0
- package/cmake-build-debug/CMakeFiles/clion-environment.txt +3 -0
- package/cmake-build-debug/CMakeFiles/cmake.check_cache +1 -0
- package/cmake-build-debug/CMakeFiles/rules.ninja +74 -0
- package/cmake-build-debug/Testing/Temporary/LastTest.log +3 -0
- package/cmake-build-debug/build.ninja +205 -0
- package/cmake-build-debug/cmake_install.cmake +49 -0
- package/cppsrc/binding.cpp +15 -0
- package/cppsrc/odinbindings.cpp +58 -0
- package/cppsrc/odinbindings.h +9 -0
- package/cppsrc/odinclient.cpp +162 -0
- package/cppsrc/odinclient.h +17 -0
- package/cppsrc/odinmedia.cpp +242 -0
- package/cppsrc/odinmedia.h +35 -0
- package/cppsrc/odinroom.cpp +738 -0
- package/cppsrc/odinroom.h +65 -0
- package/cppsrc/utilities.cpp +102 -0
- package/cppsrc/utilities.h +175 -0
- package/index.cjs +2 -0
- package/index.d.ts +5 -0
- package/libs/bin/linux/arm64/libodin_static.a +0 -0
- package/libs/bin/linux/ia32/libodin_static.a +0 -0
- package/libs/bin/linux/x64/libodin_static.a +0 -0
- package/libs/bin/macos/arm64/libodin_static.a +0 -0
- package/libs/bin/macos/x64/libodin_static.a +0 -0
- package/libs/bin/windows/arm64/odin_static.lib +0 -0
- package/libs/bin/windows/ia32/odin_static.lib +0 -0
- package/libs/bin/windows/x64/odin_static.lib +0 -0
- package/libs/include/odin.h +896 -0
- package/odin.client.d.ts +22 -0
- package/odin.media.d.ts +33 -0
- package/odin.room.d.ts +473 -0
- package/package.json +50 -0
- package/prebuilds/darwin-arm64/node.napi.node +0 -0
- package/test.js +211 -0
- package/tests/audio-recording/README.md +24 -0
- package/tests/audio-recording/index.js +148 -0
- package/tests/sending-audio/README.md +20 -0
- package/tests/sending-audio/index.js +81 -0
- package/tests/sending-audio/santa.mp3 +0 -0
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
{
|
|
2
|
+
"inputs" :
|
|
3
|
+
[
|
|
4
|
+
{
|
|
5
|
+
"path" : "CMakeLists.txt"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"isGenerated" : true,
|
|
9
|
+
"path" : "cmake-build-debug/CMakeFiles/3.24.2/CMakeSystem.cmake"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"isCMake" : true,
|
|
13
|
+
"isExternal" : true,
|
|
14
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"isCMake" : true,
|
|
18
|
+
"isExternal" : true,
|
|
19
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/Platform/Darwin-Initialize.cmake"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"isGenerated" : true,
|
|
23
|
+
"path" : "cmake-build-debug/CMakeFiles/3.24.2/CMakeCCompiler.cmake"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"isGenerated" : true,
|
|
27
|
+
"path" : "cmake-build-debug/CMakeFiles/3.24.2/CMakeCXXCompiler.cmake"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"isCMake" : true,
|
|
31
|
+
"isExternal" : true,
|
|
32
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"isCMake" : true,
|
|
36
|
+
"isExternal" : true,
|
|
37
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/CMakeGenericSystem.cmake"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"isCMake" : true,
|
|
41
|
+
"isExternal" : true,
|
|
42
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"isCMake" : true,
|
|
46
|
+
"isExternal" : true,
|
|
47
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/Platform/Darwin.cmake"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"isCMake" : true,
|
|
51
|
+
"isExternal" : true,
|
|
52
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/Platform/UnixPaths.cmake"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"isCMake" : true,
|
|
56
|
+
"isExternal" : true,
|
|
57
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/CMakeCInformation.cmake"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"isCMake" : true,
|
|
61
|
+
"isExternal" : true,
|
|
62
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"isCMake" : true,
|
|
66
|
+
"isExternal" : true,
|
|
67
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/Compiler/AppleClang-C.cmake"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"isCMake" : true,
|
|
71
|
+
"isExternal" : true,
|
|
72
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/Compiler/Clang.cmake"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"isCMake" : true,
|
|
76
|
+
"isExternal" : true,
|
|
77
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"isCMake" : true,
|
|
81
|
+
"isExternal" : true,
|
|
82
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/Compiler/GNU.cmake"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"isCMake" : true,
|
|
86
|
+
"isExternal" : true,
|
|
87
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"isCMake" : true,
|
|
91
|
+
"isExternal" : true,
|
|
92
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/Platform/Apple-AppleClang-C.cmake"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"isCMake" : true,
|
|
96
|
+
"isExternal" : true,
|
|
97
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/Platform/Apple-Clang-C.cmake"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"isCMake" : true,
|
|
101
|
+
"isExternal" : true,
|
|
102
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/Platform/Apple-Clang.cmake"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"isCMake" : true,
|
|
106
|
+
"isExternal" : true,
|
|
107
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"isCMake" : true,
|
|
111
|
+
"isExternal" : true,
|
|
112
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/CMakeCXXInformation.cmake"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"isCMake" : true,
|
|
116
|
+
"isExternal" : true,
|
|
117
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"isCMake" : true,
|
|
121
|
+
"isExternal" : true,
|
|
122
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/Compiler/AppleClang-CXX.cmake"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"isCMake" : true,
|
|
126
|
+
"isExternal" : true,
|
|
127
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/Compiler/Clang.cmake"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"isCMake" : true,
|
|
131
|
+
"isExternal" : true,
|
|
132
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/Platform/Apple-AppleClang-CXX.cmake"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"isCMake" : true,
|
|
136
|
+
"isExternal" : true,
|
|
137
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/Platform/Apple-Clang-CXX.cmake"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"isCMake" : true,
|
|
141
|
+
"isExternal" : true,
|
|
142
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/Platform/Apple-Clang.cmake"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"isCMake" : true,
|
|
146
|
+
"isExternal" : true,
|
|
147
|
+
"path" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake"
|
|
148
|
+
}
|
|
149
|
+
],
|
|
150
|
+
"kind" : "cmakeFiles",
|
|
151
|
+
"paths" :
|
|
152
|
+
{
|
|
153
|
+
"build" : "/Users/pschuster/Documents/4Players/Odin/odin-nodejs/cmake-build-debug",
|
|
154
|
+
"source" : "/Users/pschuster/Documents/4Players/Odin/odin-nodejs"
|
|
155
|
+
},
|
|
156
|
+
"version" :
|
|
157
|
+
{
|
|
158
|
+
"major" : 1,
|
|
159
|
+
"minor" : 0
|
|
160
|
+
}
|
|
161
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"configurations" :
|
|
3
|
+
[
|
|
4
|
+
{
|
|
5
|
+
"directories" :
|
|
6
|
+
[
|
|
7
|
+
{
|
|
8
|
+
"build" : ".",
|
|
9
|
+
"jsonFile" : "directory-.-Debug-f5ebdc15457944623624.json",
|
|
10
|
+
"minimumCMakeVersion" :
|
|
11
|
+
{
|
|
12
|
+
"string" : "3.24"
|
|
13
|
+
},
|
|
14
|
+
"projectIndex" : 0,
|
|
15
|
+
"source" : ".",
|
|
16
|
+
"targetIndexes" :
|
|
17
|
+
[
|
|
18
|
+
0
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
"name" : "Debug",
|
|
23
|
+
"projects" :
|
|
24
|
+
[
|
|
25
|
+
{
|
|
26
|
+
"directoryIndexes" :
|
|
27
|
+
[
|
|
28
|
+
0
|
|
29
|
+
],
|
|
30
|
+
"name" : "odin_nodejs",
|
|
31
|
+
"targetIndexes" :
|
|
32
|
+
[
|
|
33
|
+
0
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"targets" :
|
|
38
|
+
[
|
|
39
|
+
{
|
|
40
|
+
"directoryIndex" : 0,
|
|
41
|
+
"id" : "odin_nodejs::@6890427a1f51a3e7e1df",
|
|
42
|
+
"jsonFile" : "target-odin_nodejs-Debug-1ac16802f252a85492c7.json",
|
|
43
|
+
"name" : "odin_nodejs",
|
|
44
|
+
"projectIndex" : 0
|
|
45
|
+
}
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"kind" : "codemodel",
|
|
50
|
+
"paths" :
|
|
51
|
+
{
|
|
52
|
+
"build" : "/Users/pschuster/Documents/4Players/Odin/odin-nodejs/cmake-build-debug",
|
|
53
|
+
"source" : "/Users/pschuster/Documents/4Players/Odin/odin-nodejs"
|
|
54
|
+
},
|
|
55
|
+
"version" :
|
|
56
|
+
{
|
|
57
|
+
"major" : 2,
|
|
58
|
+
"minor" : 4
|
|
59
|
+
}
|
|
60
|
+
}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"cmake" :
|
|
3
|
+
{
|
|
4
|
+
"generator" :
|
|
5
|
+
{
|
|
6
|
+
"multiConfig" : false,
|
|
7
|
+
"name" : "Ninja"
|
|
8
|
+
},
|
|
9
|
+
"paths" :
|
|
10
|
+
{
|
|
11
|
+
"cmake" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/bin/cmake",
|
|
12
|
+
"cpack" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/bin/cpack",
|
|
13
|
+
"ctest" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/bin/ctest",
|
|
14
|
+
"root" : "/Users/pschuster/Library/Application Support/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/CLion.app/Contents/bin/cmake/mac/share/cmake-3.24"
|
|
15
|
+
},
|
|
16
|
+
"version" :
|
|
17
|
+
{
|
|
18
|
+
"isDirty" : false,
|
|
19
|
+
"major" : 3,
|
|
20
|
+
"minor" : 24,
|
|
21
|
+
"patch" : 2,
|
|
22
|
+
"string" : "3.24.2",
|
|
23
|
+
"suffix" : ""
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"objects" :
|
|
27
|
+
[
|
|
28
|
+
{
|
|
29
|
+
"jsonFile" : "codemodel-v2-bc24edc239de864eb886.json",
|
|
30
|
+
"kind" : "codemodel",
|
|
31
|
+
"version" :
|
|
32
|
+
{
|
|
33
|
+
"major" : 2,
|
|
34
|
+
"minor" : 4
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"jsonFile" : "cache-v2-912a6d0c3c2c7ebbadf8.json",
|
|
39
|
+
"kind" : "cache",
|
|
40
|
+
"version" :
|
|
41
|
+
{
|
|
42
|
+
"major" : 2,
|
|
43
|
+
"minor" : 0
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"jsonFile" : "cmakeFiles-v1-0825651e80f1fb47890c.json",
|
|
48
|
+
"kind" : "cmakeFiles",
|
|
49
|
+
"version" :
|
|
50
|
+
{
|
|
51
|
+
"major" : 1,
|
|
52
|
+
"minor" : 0
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"jsonFile" : "toolchains-v1-b57293a485ebf36c82cc.json",
|
|
57
|
+
"kind" : "toolchains",
|
|
58
|
+
"version" :
|
|
59
|
+
{
|
|
60
|
+
"major" : 1,
|
|
61
|
+
"minor" : 0
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
"reply" :
|
|
66
|
+
{
|
|
67
|
+
"cache-v2" :
|
|
68
|
+
{
|
|
69
|
+
"jsonFile" : "cache-v2-912a6d0c3c2c7ebbadf8.json",
|
|
70
|
+
"kind" : "cache",
|
|
71
|
+
"version" :
|
|
72
|
+
{
|
|
73
|
+
"major" : 2,
|
|
74
|
+
"minor" : 0
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"cmakeFiles-v1" :
|
|
78
|
+
{
|
|
79
|
+
"jsonFile" : "cmakeFiles-v1-0825651e80f1fb47890c.json",
|
|
80
|
+
"kind" : "cmakeFiles",
|
|
81
|
+
"version" :
|
|
82
|
+
{
|
|
83
|
+
"major" : 1,
|
|
84
|
+
"minor" : 0
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"codemodel-v2" :
|
|
88
|
+
{
|
|
89
|
+
"jsonFile" : "codemodel-v2-bc24edc239de864eb886.json",
|
|
90
|
+
"kind" : "codemodel",
|
|
91
|
+
"version" :
|
|
92
|
+
{
|
|
93
|
+
"major" : 2,
|
|
94
|
+
"minor" : 4
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"toolchains-v1" :
|
|
98
|
+
{
|
|
99
|
+
"jsonFile" : "toolchains-v1-b57293a485ebf36c82cc.json",
|
|
100
|
+
"kind" : "toolchains",
|
|
101
|
+
"version" :
|
|
102
|
+
{
|
|
103
|
+
"major" : 1,
|
|
104
|
+
"minor" : 0
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
package/cmake-build-debug/.cmake/api/v1/reply/target-odin_nodejs-Debug-1ac16802f252a85492c7.json
ADDED
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
{
|
|
2
|
+
"artifacts" :
|
|
3
|
+
[
|
|
4
|
+
{
|
|
5
|
+
"path" : "odin_nodejs"
|
|
6
|
+
}
|
|
7
|
+
],
|
|
8
|
+
"backtrace" : 1,
|
|
9
|
+
"backtraceGraph" :
|
|
10
|
+
{
|
|
11
|
+
"commands" :
|
|
12
|
+
[
|
|
13
|
+
"add_executable",
|
|
14
|
+
"add_definitions",
|
|
15
|
+
"include_directories"
|
|
16
|
+
],
|
|
17
|
+
"files" :
|
|
18
|
+
[
|
|
19
|
+
"CMakeLists.txt"
|
|
20
|
+
],
|
|
21
|
+
"nodes" :
|
|
22
|
+
[
|
|
23
|
+
{
|
|
24
|
+
"file" : 0
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"command" : 0,
|
|
28
|
+
"file" : 0,
|
|
29
|
+
"line" : 13,
|
|
30
|
+
"parent" : 0
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"command" : 1,
|
|
34
|
+
"file" : 0,
|
|
35
|
+
"line" : 6,
|
|
36
|
+
"parent" : 0
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"command" : 2,
|
|
40
|
+
"file" : 0,
|
|
41
|
+
"line" : 8,
|
|
42
|
+
"parent" : 0
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"command" : 2,
|
|
46
|
+
"file" : 0,
|
|
47
|
+
"line" : 9,
|
|
48
|
+
"parent" : 0
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"command" : 2,
|
|
52
|
+
"file" : 0,
|
|
53
|
+
"line" : 10,
|
|
54
|
+
"parent" : 0
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"command" : 2,
|
|
58
|
+
"file" : 0,
|
|
59
|
+
"line" : 11,
|
|
60
|
+
"parent" : 0
|
|
61
|
+
}
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
"compileGroups" :
|
|
65
|
+
[
|
|
66
|
+
{
|
|
67
|
+
"compileCommandFragments" :
|
|
68
|
+
[
|
|
69
|
+
{
|
|
70
|
+
"fragment" : "-g -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.1.sdk -fcolor-diagnostics"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"fragment" : "-std=gnu++14"
|
|
74
|
+
}
|
|
75
|
+
],
|
|
76
|
+
"defines" :
|
|
77
|
+
[
|
|
78
|
+
{
|
|
79
|
+
"backtrace" : 2,
|
|
80
|
+
"define" : "NAPI_VERSION=4"
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"includes" :
|
|
84
|
+
[
|
|
85
|
+
{
|
|
86
|
+
"backtrace" : 3,
|
|
87
|
+
"path" : "/Users/pschuster/Documents/4Players/Odin/odin-nodejs/cppsrc/samples"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"backtrace" : 4,
|
|
91
|
+
"path" : "/Users/pschuster/Documents/4Players/Odin/odin-nodejs/libs"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"backtrace" : 5,
|
|
95
|
+
"path" : "/Users/pschuster/Documents/4Players/Odin/odin-nodejs/libs/include"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"backtrace" : 6,
|
|
99
|
+
"path" : "/Users/pschuster/Documents/4Players/Odin/odin-nodejs/node_modules/node-addon-api"
|
|
100
|
+
}
|
|
101
|
+
],
|
|
102
|
+
"language" : "CXX",
|
|
103
|
+
"languageStandard" :
|
|
104
|
+
{
|
|
105
|
+
"backtraces" :
|
|
106
|
+
[
|
|
107
|
+
1
|
|
108
|
+
],
|
|
109
|
+
"standard" : "14"
|
|
110
|
+
},
|
|
111
|
+
"sourceIndexes" :
|
|
112
|
+
[
|
|
113
|
+
0,
|
|
114
|
+
2,
|
|
115
|
+
4,
|
|
116
|
+
10,
|
|
117
|
+
11,
|
|
118
|
+
12,
|
|
119
|
+
15,
|
|
120
|
+
17
|
|
121
|
+
]
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"compileCommandFragments" :
|
|
125
|
+
[
|
|
126
|
+
{
|
|
127
|
+
"fragment" : "-g -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.1.sdk -fcolor-diagnostics"
|
|
128
|
+
}
|
|
129
|
+
],
|
|
130
|
+
"defines" :
|
|
131
|
+
[
|
|
132
|
+
{
|
|
133
|
+
"backtrace" : 2,
|
|
134
|
+
"define" : "NAPI_VERSION=4"
|
|
135
|
+
}
|
|
136
|
+
],
|
|
137
|
+
"includes" :
|
|
138
|
+
[
|
|
139
|
+
{
|
|
140
|
+
"backtrace" : 3,
|
|
141
|
+
"path" : "/Users/pschuster/Documents/4Players/Odin/odin-nodejs/cppsrc/samples"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"backtrace" : 4,
|
|
145
|
+
"path" : "/Users/pschuster/Documents/4Players/Odin/odin-nodejs/libs"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"backtrace" : 5,
|
|
149
|
+
"path" : "/Users/pschuster/Documents/4Players/Odin/odin-nodejs/libs/include"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"backtrace" : 6,
|
|
153
|
+
"path" : "/Users/pschuster/Documents/4Players/Odin/odin-nodejs/node_modules/node-addon-api"
|
|
154
|
+
}
|
|
155
|
+
],
|
|
156
|
+
"language" : "C",
|
|
157
|
+
"sourceIndexes" :
|
|
158
|
+
[
|
|
159
|
+
9
|
|
160
|
+
]
|
|
161
|
+
}
|
|
162
|
+
],
|
|
163
|
+
"id" : "odin_nodejs::@6890427a1f51a3e7e1df",
|
|
164
|
+
"link" :
|
|
165
|
+
{
|
|
166
|
+
"commandFragments" :
|
|
167
|
+
[
|
|
168
|
+
{
|
|
169
|
+
"fragment" : "-g",
|
|
170
|
+
"role" : "flags"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"fragment" : "",
|
|
174
|
+
"role" : "flags"
|
|
175
|
+
}
|
|
176
|
+
],
|
|
177
|
+
"language" : "CXX"
|
|
178
|
+
},
|
|
179
|
+
"name" : "odin_nodejs",
|
|
180
|
+
"nameOnDisk" : "odin_nodejs",
|
|
181
|
+
"paths" :
|
|
182
|
+
{
|
|
183
|
+
"build" : ".",
|
|
184
|
+
"source" : "."
|
|
185
|
+
},
|
|
186
|
+
"sourceGroups" :
|
|
187
|
+
[
|
|
188
|
+
{
|
|
189
|
+
"name" : "Source Files",
|
|
190
|
+
"sourceIndexes" :
|
|
191
|
+
[
|
|
192
|
+
0,
|
|
193
|
+
2,
|
|
194
|
+
4,
|
|
195
|
+
9,
|
|
196
|
+
10,
|
|
197
|
+
11,
|
|
198
|
+
12,
|
|
199
|
+
15,
|
|
200
|
+
17
|
|
201
|
+
]
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"name" : "Header Files",
|
|
205
|
+
"sourceIndexes" :
|
|
206
|
+
[
|
|
207
|
+
1,
|
|
208
|
+
3,
|
|
209
|
+
5,
|
|
210
|
+
6,
|
|
211
|
+
7,
|
|
212
|
+
8,
|
|
213
|
+
13,
|
|
214
|
+
14,
|
|
215
|
+
16
|
|
216
|
+
]
|
|
217
|
+
}
|
|
218
|
+
],
|
|
219
|
+
"sources" :
|
|
220
|
+
[
|
|
221
|
+
{
|
|
222
|
+
"backtrace" : 1,
|
|
223
|
+
"compileGroupIndex" : 0,
|
|
224
|
+
"path" : "cppsrc/odinbindings.cpp",
|
|
225
|
+
"sourceGroupIndex" : 0
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"backtrace" : 1,
|
|
229
|
+
"path" : "cppsrc/odinbindings.h",
|
|
230
|
+
"sourceGroupIndex" : 1
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"backtrace" : 1,
|
|
234
|
+
"compileGroupIndex" : 0,
|
|
235
|
+
"path" : "cppsrc/odinroom.cpp",
|
|
236
|
+
"sourceGroupIndex" : 0
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"backtrace" : 1,
|
|
240
|
+
"path" : "cppsrc/odinroom.h",
|
|
241
|
+
"sourceGroupIndex" : 1
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"backtrace" : 1,
|
|
245
|
+
"compileGroupIndex" : 0,
|
|
246
|
+
"path" : "cppsrc/binding.cpp",
|
|
247
|
+
"sourceGroupIndex" : 0
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"backtrace" : 1,
|
|
251
|
+
"path" : "libs/include/odin.h",
|
|
252
|
+
"sourceGroupIndex" : 1
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"backtrace" : 1,
|
|
256
|
+
"path" : "node_modules/node-addon-api/napi-inl.deprecated.h",
|
|
257
|
+
"sourceGroupIndex" : 1
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"backtrace" : 1,
|
|
261
|
+
"path" : "node_modules/node-addon-api/napi-inl.h",
|
|
262
|
+
"sourceGroupIndex" : 1
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"backtrace" : 1,
|
|
266
|
+
"path" : "node_modules/node-addon-api/napi.h",
|
|
267
|
+
"sourceGroupIndex" : 1
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"backtrace" : 1,
|
|
271
|
+
"compileGroupIndex" : 1,
|
|
272
|
+
"path" : "node_modules/node-addon-api/nothing.c",
|
|
273
|
+
"sourceGroupIndex" : 0
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"backtrace" : 1,
|
|
277
|
+
"compileGroupIndex" : 0,
|
|
278
|
+
"path" : "node_modules/node-gyp/gyp/data/win/large-pdb-shim.cc",
|
|
279
|
+
"sourceGroupIndex" : 0
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"backtrace" : 1,
|
|
283
|
+
"compileGroupIndex" : 0,
|
|
284
|
+
"path" : "node_modules/node-gyp/src/win_delay_load_hook.cc",
|
|
285
|
+
"sourceGroupIndex" : 0
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"backtrace" : 1,
|
|
289
|
+
"compileGroupIndex" : 0,
|
|
290
|
+
"path" : "cppsrc/utilities.cpp",
|
|
291
|
+
"sourceGroupIndex" : 0
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"backtrace" : 1,
|
|
295
|
+
"path" : "cppsrc/utilities.h",
|
|
296
|
+
"sourceGroupIndex" : 1
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"backtrace" : 1,
|
|
300
|
+
"path" : "cppsrc/odinclient.h",
|
|
301
|
+
"sourceGroupIndex" : 1
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"backtrace" : 1,
|
|
305
|
+
"compileGroupIndex" : 0,
|
|
306
|
+
"path" : "cppsrc/odinclient.cpp",
|
|
307
|
+
"sourceGroupIndex" : 0
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"backtrace" : 1,
|
|
311
|
+
"path" : "cppsrc/odinmedia.h",
|
|
312
|
+
"sourceGroupIndex" : 1
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"backtrace" : 1,
|
|
316
|
+
"compileGroupIndex" : 0,
|
|
317
|
+
"path" : "cppsrc/odinmedia.cpp",
|
|
318
|
+
"sourceGroupIndex" : 0
|
|
319
|
+
}
|
|
320
|
+
],
|
|
321
|
+
"type" : "EXECUTABLE"
|
|
322
|
+
}
|