Skip to content

Commit d824fc0

Browse files
committed
Keep longer directory names
We want to be consistent with the previous layout, to avoid needlessly breaking existing codes. The header update means client codes are not required to include all of the stepcode library includes explicitly - i.e., stepcode itself does not force this requirement with its own internal includes. However, if client codes do not want to add the library prefixes to their own includes as we have for stepcode, they should still be able to add the various includes and work as before. Adjust the include directory names accordingly.
1 parent 1bd7ad9 commit d824fc0

214 files changed

Lines changed: 462 additions & 462 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

include/CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ 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)
40+
add_subdirectory(cldai)
41+
add_subdirectory(cleditor)
42+
add_subdirectory(cllazyfile)
43+
add_subdirectory(clstepcore)
44+
add_subdirectory(clutils)
4545

4646
# Local Variables:
4747
# tab-width: 8
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ set(DAI_HDRS
1313
)
1414

1515
install(FILES ${DAI_HDRS}
16-
DESTINATION ${INCLUDE_DIR}/stepcode/dai)
16+
DESTINATION ${INCLUDE_DIR}/stepcode/cldai)
1717

1818
# Local Variables:
1919
# tab-width: 8
File renamed without changes.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#ifndef SDAIDAOBJECT_H
22
#define SDAIDAOBJECT_H 1
33

4-
#include "dai/sdaiObject.h"
5-
#include "dai/sdaiString.h"
6-
#include "dai/sdaiEnum.h"
4+
#include "cldai/sdaiObject.h"
5+
#include "cldai/sdaiString.h"
6+
#include "cldai/sdaiEnum.h"
77

88
#include <sc_export.h>
99

0 commit comments

Comments
 (0)