Skip to content

Commit ec698eb

Browse files
committed
Add CMakeLists.txt to llvm folder
1 parent 21ed739 commit ec698eb

File tree

2 files changed

+18
-13
lines changed

2 files changed

+18
-13
lines changed

src/dev/engine/CMakeLists.txt

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,6 @@ target_sources(scratchcpp
1010
internal/icodebuilderfactory.h
1111
internal/codebuilderfactory.cpp
1212
internal/codebuilderfactory.h
13-
internal/llvm/llvmcodebuilder.cpp
14-
internal/llvm/llvmcodebuilder.h
15-
internal/llvm/llvmregister.h
16-
internal/llvm/llvminstruction.h
17-
internal/llvm/llvmifstatement.h
18-
internal/llvm/llvmloop.h
19-
internal/llvm/llvmcoroutine.h
20-
internal/llvm/llvmvariableptr.h
21-
internal/llvm/llvmprocedure.h
22-
internal/llvm/llvmexecutablecode.cpp
23-
internal/llvm/llvmexecutablecode.h
24-
internal/llvm/llvmexecutioncontext.cpp
25-
internal/llvm/llvmexecutioncontext.h
2613
)
14+
15+
add_subdirectory(internal/llvm)
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
target_sources(scratchcpp
2+
PRIVATE
3+
llvmcodebuilder.cpp
4+
llvmcodebuilder.h
5+
llvmregister.h
6+
llvminstruction.h
7+
llvmifstatement.h
8+
llvmloop.h
9+
llvmcoroutine.h
10+
llvmvariableptr.h
11+
llvmprocedure.h
12+
llvmexecutablecode.cpp
13+
llvmexecutablecode.h
14+
llvmexecutioncontext.cpp
15+
llvmexecutioncontext.h
16+
)

0 commit comments

Comments
 (0)