svf-lib 1.0.1879 → 1.0.1881

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -48,7 +48,7 @@ public:
48
48
  typedef Map<const Value *, const Type *> ValueToType;
49
49
  typedef std::pair<const Value *, bool> ValueBoolPair;
50
50
  typedef Map<const Value *, Set<std::string>> ValueToClassNames;
51
- typedef Map<const CallBase *, Set<const Function *>> AllocToClsNameSources;
51
+ typedef Map<const Value *, Set<const Value *>> ObjToClsNameSources;
52
52
 
53
53
 
54
54
  private:
@@ -57,7 +57,7 @@ private:
57
57
  ValueToSources _valueToAllocs; // value allocations (stack, static, heap) cache
58
58
  ValueToClassNames _thisPtrClassNames; // thisptr class name cache
59
59
  ValueToSources _valueToAllocOrClsNameSources; // value alloc/clsname sources cache
60
- AllocToClsNameSources _allocToClsNameSources; // alloc clsname sources cache
60
+ ObjToClsNameSources _objToClsNameSources; // alloc clsname sources cache
61
61
 
62
62
 
63
63
  public:
@@ -122,7 +122,7 @@ protected:
122
122
  Set<const Value *> &bwFindAllocOrClsNameSources(const Value *startValue);
123
123
 
124
124
  /// forward find class name sources starting from an allocation
125
- Set<const Function *> &fwFindClsNameSources(const CallBase *alloc);
125
+ Set<const Value *> &fwFindClsNameSources(const Value *startValue);
126
126
  };
127
127
  }
128
128
  #endif //SVF_OBJTYPEINFERENCE_H
@@ -27,7 +27,17 @@ endmacro()
27
27
  set_and_check(SVF_INSTALL_ROOT "${PACKAGE_PREFIX_DIR}")
28
28
  set_and_check(SVF_INSTALL_BIN_DIR "${PACKAGE_PREFIX_DIR}/bin")
29
29
  set_and_check(SVF_INSTALL_LIB_DIR "${PACKAGE_PREFIX_DIR}/lib")
30
- set_and_check(SVF_INSTALL_INCLUDE_DIR "${PACKAGE_PREFIX_DIR}/include")
30
+
31
+ set(SVF_INCLUDE_PATH "${PACKAGE_PREFIX_DIR}/../svf/include")
32
+ set(SVF_LLVM_INCLUDE_PATH "${PACKAGE_PREFIX_DIR}/../svf-llvm/include")
33
+
34
+ if(EXISTS ${SVF_INCLUDE_PATH} AND EXISTS ${SVF_LLVM_INCLUDE_PATH})
35
+ set(SVF_INSTALL_INCLUDE_DIR "${SVF_INCLUDE_PATH};${SVF_LLVM_INCLUDE_PATH};${PACKAGE_PREFIX_DIR}/include")
36
+ else()
37
+ set_and_check(SVF_INSTALL_INCLUDE_DIR "${PACKAGE_PREFIX_DIR}/include")
38
+ endif()
39
+
40
+ message(STATUS "SVF_INSTALL_INCLUDE_DIR is set to: ${SVF_INSTALL_INCLUDE_DIR}")
31
41
 
32
42
  set_and_check(SVF_INSTALL_EXTAPI_DIR "${PACKAGE_PREFIX_DIR}/lib")
33
43
  set_and_check(SVF_INSTALL_EXTAPI_FILE "${PACKAGE_PREFIX_DIR}/lib/extapi.bc")
@@ -45,4 +55,4 @@ set(SVF_CXX_STANDARD "17")
45
55
  set(SVF_ENABLE_RTTI "ON")
46
56
  set(SVF_ENABLE_EXCEPTIONS "ON")
47
57
 
48
- include("${CMAKE_CURRENT_LIST_DIR}/SVFTargets.cmake")
58
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svf-lib",
3
- "version": "1.0.1879",
3
+ "version": "1.0.1881",
4
4
  "description": "SVF's npm support",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,186 +0,0 @@
1
- # Generated by CMake
2
-
3
- if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8)
4
- message(FATAL_ERROR "CMake >= 2.8.0 required")
5
- endif()
6
- if(CMAKE_VERSION VERSION_LESS "2.8.3")
7
- message(FATAL_ERROR "CMake >= 2.8.3 required")
8
- endif()
9
- cmake_policy(PUSH)
10
- cmake_policy(VERSION 2.8.3...3.26)
11
- #----------------------------------------------------------------
12
- # Generated CMake target import file.
13
- #----------------------------------------------------------------
14
-
15
- # Commands may need to know the format version.
16
- set(CMAKE_IMPORT_FILE_VERSION 1)
17
-
18
- # Protect against multiple inclusion, which would fail when already imported targets are added once more.
19
- set(_cmake_targets_defined "")
20
- set(_cmake_targets_not_defined "")
21
- set(_cmake_expected_targets "")
22
- foreach(_cmake_expected_target IN ITEMS SvfCore cfl dvf svf-ex llvm2svf mta saber wpa ae SvfLLVM)
23
- list(APPEND _cmake_expected_targets "${_cmake_expected_target}")
24
- if(TARGET "${_cmake_expected_target}")
25
- list(APPEND _cmake_targets_defined "${_cmake_expected_target}")
26
- else()
27
- list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}")
28
- endif()
29
- endforeach()
30
- unset(_cmake_expected_target)
31
- if(_cmake_targets_defined STREQUAL _cmake_expected_targets)
32
- unset(_cmake_targets_defined)
33
- unset(_cmake_targets_not_defined)
34
- unset(_cmake_expected_targets)
35
- unset(CMAKE_IMPORT_FILE_VERSION)
36
- cmake_policy(POP)
37
- return()
38
- endif()
39
- if(NOT _cmake_targets_defined STREQUAL "")
40
- string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}")
41
- string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}")
42
- message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n")
43
- endif()
44
- unset(_cmake_targets_defined)
45
- unset(_cmake_targets_not_defined)
46
- unset(_cmake_expected_targets)
47
-
48
-
49
- # Create imported target SvfCore
50
- add_library(SvfCore STATIC IMPORTED)
51
-
52
- set_target_properties(SvfCore PROPERTIES
53
- INTERFACE_INCLUDE_DIRECTORIES "/Users/runner/work/SVF/SVF/svf/include;/Users/runner/work/SVF/SVF/svf/include"
54
- INTERFACE_LINK_LIBRARIES "/Users/runner/work/SVF/SVF/z3.obj/bin/libz3.dylib"
55
- )
56
-
57
- if(NOT CMAKE_VERSION VERSION_LESS "3.23.0")
58
- target_sources(SvfCore
59
- INTERFACE
60
- FILE_SET "HEADERS"
61
- TYPE "HEADERS"
62
- BASE_DIRS "/Users/runner/work/SVF/SVF/svf/include"
63
- FILES "/Users/runner/work/SVF/SVF/svf/include/AE/Core/AbstractValue.h" "/Users/runner/work/SVF/SVF/svf/include/AE/Core/AddressValue.h" "/Users/runner/work/SVF/SVF/svf/include/AE/Core/BoundedZ3Expr.h" "/Users/runner/work/SVF/SVF/svf/include/AE/Core/CFBasicBlockGWTO.h" "/Users/runner/work/SVF/SVF/svf/include/AE/Core/ConsExeState.h" "/Users/runner/work/SVF/SVF/svf/include/AE/Core/ExeState.h" "/Users/runner/work/SVF/SVF/svf/include/AE/Core/ICFGWTO.h" "/Users/runner/work/SVF/SVF/svf/include/AE/Core/IntervalExeState.h" "/Users/runner/work/SVF/SVF/svf/include/AE/Core/IntervalValue.h" "/Users/runner/work/SVF/SVF/svf/include/AE/Core/NumericLiteral.h" "/Users/runner/work/SVF/SVF/svf/include/AE/Core/RelExeState.h" "/Users/runner/work/SVF/SVF/svf/include/AE/Core/RelationSolver.h" "/Users/runner/work/SVF/SVF/svf/include/AE/Core/SingleAbsValue.h" "/Users/runner/work/SVF/SVF/svf/include/AE/Core/SymState.h" "/Users/runner/work/SVF/SVF/svf/include/AE/Svfexe/AbstractExecution.h" "/Users/runner/work/SVF/SVF/svf/include/AE/Svfexe/BufOverflowChecker.h" "/Users/runner/work/SVF/SVF/svf/include/AE/Svfexe/SVFIR2ConsExeState.h" "/Users/runner/work/SVF/SVF/svf/include/AE/Svfexe/SVFIR2ItvExeState.h" "/Users/runner/work/SVF/SVF/svf/include/CFL/CFGNormalizer.h" "/Users/runner/work/SVF/SVF/svf/include/CFL/CFGrammar.h" "/Users/runner/work/SVF/SVF/svf/include/CFL/CFLAlias.h" "/Users/runner/work/SVF/SVF/svf/include/CFL/CFLBase.h" "/Users/runner/work/SVF/SVF/svf/include/CFL/CFLGramGraphChecker.h" "/Users/runner/work/SVF/SVF/svf/include/CFL/CFLGraphBuilder.h" "/Users/runner/work/SVF/SVF/svf/include/CFL/CFLSVFGBuilder.h" "/Users/runner/work/SVF/SVF/svf/include/CFL/CFLSolver.h" "/Users/runner/work/SVF/SVF/svf/include/CFL/CFLStat.h" "/Users/runner/work/SVF/SVF/svf/include/CFL/CFLVF.h" "/Users/runner/work/SVF/SVF/svf/include/CFL/GrammarBuilder.h" "/Users/runner/work/SVF/SVF/svf/include/DDA/ContextDDA.h" "/Users/runner/work/SVF/SVF/svf/include/DDA/DDAClient.h" "/Users/runner/work/SVF/SVF/svf/include/DDA/DDAPass.h" "/Users/runner/work/SVF/SVF/svf/include/DDA/DDAStat.h" "/Users/runner/work/SVF/SVF/svf/include/DDA/DDAVFSolver.h" "/Users/runner/work/SVF/SVF/svf/include/DDA/FlowDDA.h" "/Users/runner/work/SVF/SVF/svf/include/FastCluster/fastcluster.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/CDG.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/CFBasicBlockG.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/CFLGraph.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/CHG.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/ConsG.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/ConsGEdge.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/ConsGNode.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/DOTGraphTraits.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/GenericGraph.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/GraphPrinter.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/GraphTraits.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/GraphWriter.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/ICFG.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/ICFGEdge.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/ICFGNode.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/ICFGStat.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/IRGraph.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/PTACallGraph.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/SCC.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/SVFG.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/SVFGEdge.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/SVFGNode.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/SVFGOPT.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/SVFGStat.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/ThreadCallGraph.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/VFG.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/VFGEdge.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/VFGNode.h" "/Users/runner/work/SVF/SVF/svf/include/Graphs/WTO.h" "/Users/runner/work/SVF/SVF/svf/include/MSSA/MSSAMuChi.h" "/Users/runner/work/SVF/SVF/svf/include/MSSA/MemPartition.h" "/Users/runner/work/SVF/SVF/svf/include/MSSA/MemRegion.h" "/Users/runner/work/SVF/SVF/svf/include/MSSA/MemSSA.h" "/Users/runner/work/SVF/SVF/svf/include/MSSA/SVFGBuilder.h" "/Users/runner/work/SVF/SVF/svf/include/MTA/FSMPTA.h" "/Users/runner/work/SVF/SVF/svf/include/MTA/LockAnalysis.h" "/Users/runner/work/SVF/SVF/svf/include/MTA/MHP.h" "/Users/runner/work/SVF/SVF/svf/include/MTA/MTA.h" "/Users/runner/work/SVF/SVF/svf/include/MTA/MTAResultValidator.h" "/Users/runner/work/SVF/SVF/svf/include/MTA/MTAStat.h" "/Users/runner/work/SVF/SVF/svf/include/MTA/PCG.h" "/Users/runner/work/SVF/SVF/svf/include/MTA/TCT.h" "/Users/runner/work/SVF/SVF/svf/include/MemoryModel/AbstractPointsToDS.h" "/Users/runner/work/SVF/SVF/svf/include/MemoryModel/AccessPath.h" "/Users/runner/work/SVF/SVF/svf/include/MemoryModel/ConditionalPT.h" "/Users/runner/work/SVF/SVF/svf/include/MemoryModel/MutablePointsToDS.h" "/Users/runner/work/SVF/SVF/svf/include/MemoryModel/PersistentPointsToCache.h" "/Users/runner/work/SVF/SVF/svf/include/MemoryModel/PersistentPointsToDS.h" "/Users/runner/work/SVF/SVF/svf/include/MemoryModel/PointerAnalysis.h" "/Users/runner/work/SVF/SVF/svf/include/MemoryModel/PointerAnalysisImpl.h" "/Users/runner/work/SVF/SVF/svf/include/MemoryModel/PointsTo.h" "/Users/runner/work/SVF/SVF/svf/include/MemoryModel/SVFLoop.h" "/Users/runner/work/SVF/SVF/svf/include/SABER/DoubleFreeChecker.h" "/Users/runner/work/SVF/SVF/svf/include/SABER/FileChecker.h" "/Users/runner/work/SVF/SVF/svf/include/SABER/LeakChecker.h" "/Users/runner/work/SVF/SVF/svf/include/SABER/ProgSlice.h" "/Users/runner/work/SVF/SVF/svf/include/SABER/SaberCheckerAPI.h" "/Users/runner/work/SVF/SVF/svf/include/SABER/SaberCondAllocator.h" "/Users/runner/work/SVF/SVF/svf/include/SABER/SaberSVFGBuilder.h" "/Users/runner/work/SVF/SVF/svf/include/SABER/SrcSnkDDA.h" "/Users/runner/work/SVF/SVF/svf/include/SABER/SrcSnkSolver.h" "/Users/runner/work/SVF/SVF/svf/include/SVFIR/PAGBuilderFromFile.h" "/Users/runner/work/SVF/SVF/svf/include/SVFIR/SVFFileSystem.h" "/Users/runner/work/SVF/SVF/svf/include/SVFIR/SVFIR.h" "/Users/runner/work/SVF/SVF/svf/include/SVFIR/SVFModule.h" "/Users/runner/work/SVF/SVF/svf/include/SVFIR/SVFStatements.h" "/Users/runner/work/SVF/SVF/svf/include/SVFIR/SVFType.h" "/Users/runner/work/SVF/SVF/svf/include/SVFIR/SVFValue.h" "/Users/runner/work/SVF/SVF/svf/include/SVFIR/SVFVariables.h" "/Users/runner/work/SVF/SVF/svf/include/SVFIR/SymbolTableInfo.h" "/Users/runner/work/SVF/SVF/svf/include/Util/Annotator.h" "/Users/runner/work/SVF/SVF/svf/include/Util/BitVector.h" "/Users/runner/work/SVF/SVF/svf/include/Util/CDGBuilder.h" "/Users/runner/work/SVF/SVF/svf/include/Util/CFBasicBlockGBuilder.h" "/Users/runner/work/SVF/SVF/svf/include/Util/CallGraphBuilder.h" "/Users/runner/work/SVF/SVF/svf/include/Util/Casting.h" "/Users/runner/work/SVF/SVF/svf/include/Util/CommandLine.h" "/Users/runner/work/SVF/SVF/svf/include/Util/CoreBitVector.h" "/Users/runner/work/SVF/SVF/svf/include/Util/CxtStmt.h" "/Users/runner/work/SVF/SVF/svf/include/Util/DPItem.h" "/Users/runner/work/SVF/SVF/svf/include/Util/ExtAPI.h" "/Users/runner/work/SVF/SVF/svf/include/Util/GeneralType.h" "/Users/runner/work/SVF/SVF/svf/include/Util/GraphReachSolver.h" "/Users/runner/work/SVF/SVF/svf/include/Util/NodeIDAllocator.h" "/Users/runner/work/SVF/SVF/svf/include/Util/Options.h" "/Users/runner/work/SVF/SVF/svf/include/Util/PTAStat.h" "/Users/runner/work/SVF/SVF/svf/include/Util/SVFBugReport.h" "/Users/runner/work/SVF/SVF/svf/include/Util/SVFStat.h" "/Users/runner/work/SVF/SVF/svf/include/Util/SVFUtil.h" "/Users/runner/work/SVF/SVF/svf/include/Util/SparseBitVector.h" "/Users/runner/work/SVF/SVF/svf/include/Util/ThreadAPI.h" "/Users/runner/work/SVF/SVF/svf/include/Util/WorkList.h" "/Users/runner/work/SVF/SVF/svf/include/Util/Z3Expr.h" "/Users/runner/work/SVF/SVF/svf/include/Util/cJSON.h" "/Users/runner/work/SVF/SVF/svf/include/Util/iterator.h" "/Users/runner/work/SVF/SVF/svf/include/Util/iterator_range.h" "/Users/runner/work/SVF/SVF/svf/include/WPA/Andersen.h" "/Users/runner/work/SVF/SVF/svf/include/WPA/AndersenPWC.h" "/Users/runner/work/SVF/SVF/svf/include/WPA/CSC.h" "/Users/runner/work/SVF/SVF/svf/include/WPA/FlowSensitive.h" "/Users/runner/work/SVF/SVF/svf/include/WPA/Steensgaard.h" "/Users/runner/work/SVF/SVF/svf/include/WPA/TypeAnalysis.h" "/Users/runner/work/SVF/SVF/svf/include/WPA/VersionedFlowSensitive.h" "/Users/runner/work/SVF/SVF/svf/include/WPA/WPAFSSolver.h" "/Users/runner/work/SVF/SVF/svf/include/WPA/WPAPass.h" "/Users/runner/work/SVF/SVF/svf/include/WPA/WPASolver.h" "/Users/runner/work/SVF/SVF/svf/include/WPA/WPAStat.h"
64
- )
65
- else()
66
- set_property(TARGET SvfCore
67
- APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES
68
- "/Users/runner/work/SVF/SVF/svf/include"
69
- )
70
- endif()
71
-
72
- # Create imported target cfl
73
- add_executable(cfl IMPORTED)
74
-
75
- # Create imported target dvf
76
- add_executable(dvf IMPORTED)
77
-
78
- # Create imported target svf-ex
79
- add_executable(svf-ex IMPORTED)
80
-
81
- # Create imported target llvm2svf
82
- add_executable(llvm2svf IMPORTED)
83
-
84
- # Create imported target mta
85
- add_executable(mta IMPORTED)
86
-
87
- # Create imported target saber
88
- add_executable(saber IMPORTED)
89
-
90
- # Create imported target wpa
91
- add_executable(wpa IMPORTED)
92
-
93
- # Create imported target ae
94
- add_executable(ae IMPORTED)
95
-
96
- # Create imported target SvfLLVM
97
- add_library(SvfLLVM STATIC IMPORTED)
98
-
99
- set_target_properties(SvfLLVM PROPERTIES
100
- INTERFACE_INCLUDE_DIRECTORIES "/Users/runner/work/SVF/SVF/svf-llvm/include;/Users/runner/work/SVF/SVF/svf-llvm/include"
101
- INTERFACE_LINK_LIBRARIES "/Users/runner/work/SVF/SVF/z3.obj/bin/libz3.dylib;LLVM;LLVM;SvfCore"
102
- )
103
-
104
- if(NOT CMAKE_VERSION VERSION_LESS "3.23.0")
105
- target_sources(SvfLLVM
106
- INTERFACE
107
- FILE_SET "HEADERS"
108
- TYPE "HEADERS"
109
- BASE_DIRS "/Users/runner/work/SVF/SVF/svf-llvm/include"
110
- FILES "/Users/runner/work/SVF/SVF/svf-llvm/include/SVF-LLVM/BasicTypes.h" "/Users/runner/work/SVF/SVF/svf-llvm/include/SVF-LLVM/BreakConstantExpr.h" "/Users/runner/work/SVF/SVF/svf-llvm/include/SVF-LLVM/CHGBuilder.h" "/Users/runner/work/SVF/SVF/svf-llvm/include/SVF-LLVM/CppUtil.h" "/Users/runner/work/SVF/SVF/svf-llvm/include/SVF-LLVM/DCHG.h" "/Users/runner/work/SVF/SVF/svf-llvm/include/SVF-LLVM/GEPTypeBridgeIterator.h" "/Users/runner/work/SVF/SVF/svf-llvm/include/SVF-LLVM/ICFGBuilder.h" "/Users/runner/work/SVF/SVF/svf-llvm/include/SVF-LLVM/LLVMLoopAnalysis.h" "/Users/runner/work/SVF/SVF/svf-llvm/include/SVF-LLVM/LLVMModule.h" "/Users/runner/work/SVF/SVF/svf-llvm/include/SVF-LLVM/LLVMUtil.h" "/Users/runner/work/SVF/SVF/svf-llvm/include/SVF-LLVM/ObjTypeInference.h" "/Users/runner/work/SVF/SVF/svf-llvm/include/SVF-LLVM/SVFIRBuilder.h" "/Users/runner/work/SVF/SVF/svf-llvm/include/SVF-LLVM/SymbolTableBuilder.h"
111
- )
112
- else()
113
- set_property(TARGET SvfLLVM
114
- APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES
115
- "/Users/runner/work/SVF/SVF/svf-llvm/include"
116
- )
117
- endif()
118
-
119
- # Import target "SvfCore" for configuration "Release"
120
- set_property(TARGET SvfCore APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
121
- set_target_properties(SvfCore PROPERTIES
122
- IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE "CXX"
123
- IMPORTED_LOCATION_RELEASE "/Users/runner/work/SVF/SVF/Release-build/lib/libSvfCore.a"
124
- )
125
-
126
- # Import target "cfl" for configuration "Release"
127
- set_property(TARGET cfl APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
128
- set_target_properties(cfl PROPERTIES
129
- IMPORTED_LOCATION_RELEASE "/Users/runner/work/SVF/SVF/Release-build/bin/cfl"
130
- )
131
-
132
- # Import target "dvf" for configuration "Release"
133
- set_property(TARGET dvf APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
134
- set_target_properties(dvf PROPERTIES
135
- IMPORTED_LOCATION_RELEASE "/Users/runner/work/SVF/SVF/Release-build/bin/dvf"
136
- )
137
-
138
- # Import target "svf-ex" for configuration "Release"
139
- set_property(TARGET svf-ex APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
140
- set_target_properties(svf-ex PROPERTIES
141
- IMPORTED_LOCATION_RELEASE "/Users/runner/work/SVF/SVF/Release-build/bin/svf-ex"
142
- )
143
-
144
- # Import target "llvm2svf" for configuration "Release"
145
- set_property(TARGET llvm2svf APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
146
- set_target_properties(llvm2svf PROPERTIES
147
- IMPORTED_LOCATION_RELEASE "/Users/runner/work/SVF/SVF/Release-build/bin/llvm2svf"
148
- )
149
-
150
- # Import target "mta" for configuration "Release"
151
- set_property(TARGET mta APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
152
- set_target_properties(mta PROPERTIES
153
- IMPORTED_LOCATION_RELEASE "/Users/runner/work/SVF/SVF/Release-build/bin/mta"
154
- )
155
-
156
- # Import target "saber" for configuration "Release"
157
- set_property(TARGET saber APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
158
- set_target_properties(saber PROPERTIES
159
- IMPORTED_LOCATION_RELEASE "/Users/runner/work/SVF/SVF/Release-build/bin/saber"
160
- )
161
-
162
- # Import target "wpa" for configuration "Release"
163
- set_property(TARGET wpa APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
164
- set_target_properties(wpa PROPERTIES
165
- IMPORTED_LOCATION_RELEASE "/Users/runner/work/SVF/SVF/Release-build/bin/wpa"
166
- )
167
-
168
- # Import target "ae" for configuration "Release"
169
- set_property(TARGET ae APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
170
- set_target_properties(ae PROPERTIES
171
- IMPORTED_LOCATION_RELEASE "/Users/runner/work/SVF/SVF/Release-build/bin/ae"
172
- )
173
-
174
- # Import target "SvfLLVM" for configuration "Release"
175
- set_property(TARGET SvfLLVM APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
176
- set_target_properties(SvfLLVM PROPERTIES
177
- IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE "CXX"
178
- IMPORTED_LOCATION_RELEASE "/Users/runner/work/SVF/SVF/Release-build/lib/libSvfLLVM.a"
179
- )
180
-
181
- # This file does not depend on other imported targets which have
182
- # been exported from the same project but in a separate export set.
183
-
184
- # Commands beyond this point should not need to know the version.
185
- set(CMAKE_IMPORT_FILE_VERSION)
186
- cmake_policy(POP)