Skip to content

Commit 8450edd

Browse files
build(lexer): update wheel_lexer CMakeLists.txt for new include directory structure
1 parent 6fd496a commit 8450edd

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

wheel_lexer/CMakeLists.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ target_sources(
44
wheel_lexer
55
INTERFACE
66
FILE_SET HEADERS
7-
BASE_DIRS lib
7+
BASE_DIRS include
88
FILES
9-
lib/token.hxx
10-
lib/cursor.hxx
11-
lib/aliases.hxx
12-
lib/handlers.hxx
13-
lib/kind.hxx
14-
lib/utils.hxx
15-
lib/lexer.hxx
9+
include/wheel_lexer/token.hxx
10+
include/wheel_lexer/cursor.hxx
11+
include/wheel_lexer/aliases.hxx
12+
include/wheel_lexer/handlers.hxx
13+
include/wheel_lexer/kind.hxx
14+
include/wheel_lexer/utils.hxx
15+
include/wheel_lexer/lexer.hxx
1616
)
1717

1818
target_include_directories(
1919
wheel_lexer
2020
INTERFACE
21-
${CMAKE_CURRENT_SOURCE_DIR}
21+
${CMAKE_CURRENT_SOURCE_DIR}/include
2222
)

0 commit comments

Comments
 (0)