We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57b36cc commit 25a3eaeCopy full SHA for 25a3eae
Sources/CMakeLists.txt
@@ -5,6 +5,7 @@ add_subdirectory(SystemExtras)
5
add_subdirectory(WASI)
6
add_subdirectory(WasmTypes)
7
add_subdirectory(WasmParser)
8
+add_subdirectory(WAT)
9
10
if(WASMKIT_BUILD_CLI)
11
add_subdirectory(CLI)
Sources/WAT/CMakeLists.txt
@@ -0,0 +1,16 @@
1
+add_wasmkit_library(WAT
2
+ BinaryInstructionEncoder.swift
3
+ Encoder.swift
4
+ Lexer.swift
+ Location.swift
+ NameMapping.swift
+ ParseTextInstruction.swift
+ Parser.swift
+ Parser/ExpressionParser.swift
+ Parser/WastParser.swift
+ Parser/WatParser.swift
12
+ WAT.swift
13
+)
14
+
15
+target_link_wasmkit_libraries(WAT PUBLIC
16
+ WasmParser)
0 commit comments