Skip to content

Commit c85720f

Browse files
committed
Stub in CMake logic for other header dirs
1 parent ac19698 commit c85720f

5 files changed

Lines changed: 62 additions & 0 deletions

File tree

include/CMakeLists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@ install(FILES ordered_attrs.h
3737
install(FILES ${SC_BINARY_DIR}/${INCLUDE_DIR}/config.h
3838
DESTINATION ${INCLUDE_DIR}/stepcode)
3939

40+
add_subdirectory(core)
41+
add_subdirectory(dai)
42+
add_subdirectory(editor)
43+
add_subdirectory(lazy)
44+
add_subdirectory(utils)
45+
4046
# Local Variables:
4147
# tab-width: 8
4248
# mode: cmake

include/dai/CMakeLists.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
set(DAI_HDRS
2+
3+
)
4+
5+
install(FILES ${DAI_HDRS}
6+
DESTINATION ${INCLUDE_DIR}/stepcode/dai)
7+
8+
# Local Variables:
9+
# tab-width: 8
10+
# mode: cmake
11+
# indent-tabs-mode: t
12+
# End:
13+
# ex: shiftwidth=2 tabstop=8
14+

include/editor/CMakeLists.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
set(EDITOR_HDRS
2+
3+
)
4+
5+
install(FILES ${EDITOR_HDRS}
6+
DESTINATION ${INCLUDE_DIR}/stepcode/editor)
7+
8+
# Local Variables:
9+
# tab-width: 8
10+
# mode: cmake
11+
# indent-tabs-mode: t
12+
# End:
13+
# ex: shiftwidth=2 tabstop=8
14+

include/lazy/CMakeLists.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
set(LAZY_HDRS
2+
3+
)
4+
5+
install(FILES ${LAZY_HDRS}
6+
DESTINATION ${INCLUDE_DIR}/stepcode/lazy)
7+
8+
# Local Variables:
9+
# tab-width: 8
10+
# mode: cmake
11+
# indent-tabs-mode: t
12+
# End:
13+
# ex: shiftwidth=2 tabstop=8
14+

include/utils/CMakeLists.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
set(UTILS_HDRS
2+
3+
)
4+
5+
install(FILES ${UTILS_HDRS}
6+
DESTINATION ${INCLUDE_DIR}/stepcode/utils)
7+
8+
# Local Variables:
9+
# tab-width: 8
10+
# mode: cmake
11+
# indent-tabs-mode: t
12+
# End:
13+
# ex: shiftwidth=2 tabstop=8
14+

0 commit comments

Comments
 (0)