Skip to content

Commit 56330a7

Browse files
[wasm][build] Exclude Tools from build when BUILD_TOOLS is OFF
This is a follow up to 5e7281b, which just adds the `BUILD_TOOLS` option but doesn't actually use it.
1 parent dbca8c7 commit 56330a7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Sources/CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@ add_subdirectory(UUID)
22
add_subdirectory(Foundation)
33
add_subdirectory(FoundationNetworking)
44
add_subdirectory(FoundationXML)
5-
add_subdirectory(Tools)
5+
if(BUILD_TOOLS)
6+
add_subdirectory(Tools)
7+
endif()

0 commit comments

Comments
 (0)