Skip to content

Commit 631053d

Browse files
committed
build: hoist the BlocksRuntime add_subdirectory
Move the subdirectory recursion for the BlocksRuntime to the top level as this is a separate target entity.
1 parent a1b9319 commit 631053d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,9 @@ add_subdirectory(dispatch)
330330
add_subdirectory(man)
331331
add_subdirectory(os)
332332
add_subdirectory(private)
333+
if(NOT APPLE)
334+
add_subdirectory(src/BlocksRuntime)
335+
endif()
333336
add_subdirectory(src)
334337
if(BUILD_TESTING)
335338
add_subdirectory(tests)

src/CMakeLists.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11

2-
if(NOT APPLE)
3-
add_subdirectory(BlocksRuntime)
4-
endif()
5-
62
add_library(dispatch
73
allocator.c
84
apply.c

0 commit comments

Comments
 (0)