File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ binaryen_add_executable(wasm-dis wasm-dis.cpp)
17
17
binaryen_add_executable(wasm-ctor-eval wasm-ctor-eval.cpp)
18
18
if (NOT BUILD_EMSCRIPTEN_TOOLS_ONLY)
19
19
binaryen_add_executable(wasm-shell wasm-shell.cpp)
20
- binaryen_add_executable(wasm-reduce wasm-reduce.cpp)
21
20
binaryen_add_executable(wasm-merge wasm-merge.cpp)
22
21
binaryen_add_executable(wasm-fuzz-types "${fuzzing_SOURCES} ;wasm-fuzz-types.cpp" )
23
22
binaryen_add_executable(wasm-fuzz-lattices "${fuzzing_SOURCES} ;wasm-fuzz-lattices.cpp" )
23
+ add_subdirectory (wasm-reduce)
24
24
endif ()
25
25
26
26
add_subdirectory (wasm-split)
Original file line number Diff line number Diff line change
1
+ FILE (GLOB wasm_reduce_HEADERS *h)
2
+ set (wasm_reduce_SOURCES
3
+ wasm-reduce.cpp
4
+ ${wasm_reduce_HEADERS}
5
+ )
6
+ binaryen_add_executable(wasm-reduce "${wasm_reduce_SOURCES} " )
Original file line number Diff line number Diff line change 39
39
#include " support/hash.h"
40
40
#include " support/path.h"
41
41
#include " support/timing.h"
42
- #include " tool-options.h"
42
+ #include " tools/ tool-options.h"
43
43
#include " wasm-builder.h"
44
44
#include " wasm-io.h"
45
45
#include " wasm-validator.h"
You can’t perform that action at this time.
0 commit comments