Skip to content

Commit c8f3442

Browse files
committed
Rename entries of CProver API for binaries and libraries in the CMakeLists.txt
1 parent 80aeaad commit c8f3442

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,8 @@ cprover_default_properties(
216216
cbmc
217217
cbmc-lib
218218
cpp
219-
api_bin
220-
bmc_api
219+
api-binary-driver
220+
cprover-api
221221
cprover
222222
cprover-lib
223223
crangler

cpp_api/CMakeLists.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# This step builds a binary driving the API (to be used for testing)
2-
add_executable(api_bin call_bmc.cpp api.cpp)
3-
target_link_libraries(api_bin goto-programs util langapi ansi-c)
2+
add_executable(api-binary-driver call_bmc.cpp api.cpp)
3+
target_link_libraries(api-binary-driver goto-programs util langapi ansi-c)
44

5-
# This step builds the API in the form of a statically linked library (libbmc_api.a)
6-
add_library(bmc_api api.cpp)
7-
target_link_libraries(bmc_api goto-programs util langapi ansi-c)
5+
# This step builds the API in the form of a statically linked library (libcprover-api.a)
6+
add_library(cprover-api api.cpp)
7+
target_link_libraries(cprover-api goto-programs util langapi ansi-c)
88

9-
install(TARGETS bmc_api RUNTIME DESTINATION lib)
9+
install(TARGETS cprover-api RUNTIME DESTINATION lib)

0 commit comments

Comments
 (0)