File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.10)
2
- project (StaticWritePlugin )
2
+ project (StaticIOPlugin )
3
3
4
4
# Find the LLVM and Clang packages
5
5
find_package (LLVM REQUIRED CONFIG)
@@ -12,20 +12,20 @@ add_definitions(${LLVM_DEFINITIONS})
12
12
13
13
# Specify the source files
14
14
set (SOURCES
15
- StaticWritePlugin .cpp
15
+ StaticIOPlugin .cpp
16
16
)
17
17
18
18
# Create the shared library for the Clang plugin
19
- add_library (StaticWritePlugin SHARED ${SOURCES} )
19
+ add_library (StaticIOPlugin SHARED ${SOURCES} )
20
20
21
21
# Set the properties for the plugin
22
- set_target_properties (StaticWritePlugin PROPERTIES
22
+ set_target_properties (StaticIOPlugin PROPERTIES
23
23
COMPILE_FLAGS "${LLVM_CXXFLAGS} "
24
24
LINK_FLAGS "${LLVM_LDFLAGS} "
25
25
)
26
26
27
27
# Link the Clang libraries
28
- target_link_libraries (StaticWritePlugin
28
+ target_link_libraries (StaticIOPlugin
29
29
clangTooling
30
30
clangBasic
31
31
clangASTMatchers
You can’t perform that action at this time.
0 commit comments