Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 047ccce

Browse files
committedSep 10, 2024
Changed StaticWritePlugin -> StaticIOPlugin
1 parent 1f53dbf commit 047ccce

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.10)
2-
project(StaticWritePlugin)
2+
project(StaticIOPlugin)
33

44
# Find the LLVM and Clang packages
55
find_package(LLVM REQUIRED CONFIG)
@@ -12,20 +12,20 @@ add_definitions(${LLVM_DEFINITIONS})
1212

1313
# Specify the source files
1414
set(SOURCES
15-
StaticWritePlugin.cpp
15+
StaticIOPlugin.cpp
1616
)
1717

1818
# Create the shared library for the Clang plugin
19-
add_library(StaticWritePlugin SHARED ${SOURCES})
19+
add_library(StaticIOPlugin SHARED ${SOURCES})
2020

2121
# Set the properties for the plugin
22-
set_target_properties(StaticWritePlugin PROPERTIES
22+
set_target_properties(StaticIOPlugin PROPERTIES
2323
COMPILE_FLAGS "${LLVM_CXXFLAGS}"
2424
LINK_FLAGS "${LLVM_LDFLAGS}"
2525
)
2626

2727
# Link the Clang libraries
28-
target_link_libraries(StaticWritePlugin
28+
target_link_libraries(StaticIOPlugin
2929
clangTooling
3030
clangBasic
3131
clangASTMatchers

0 commit comments

Comments
 (0)
Please sign in to comment.