Skip to content

Commit d512204

Browse files
committed
Add cbmc and jbmc as install targets
These were removed upstream, presumably because they don't really have an install target at all, and only the cbmc binary was registered
1 parent bc887c5 commit d512204

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/cbmc/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,5 @@ add_if_library(cbmc-lib jsil)
3333
# Executable
3434
add_executable(cbmc cbmc_main.cpp)
3535
target_link_libraries(cbmc cbmc-lib)
36+
37+
install(TARGETS cbmc DESTINATION bin)

src/jbmc/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,5 @@ add_if_library(jbmc-lib jsil)
3434
# Executable
3535
add_executable(jbmc jbmc_main.cpp)
3636
target_link_libraries(jbmc jbmc-lib)
37+
38+
install(TARGETS jbmc DESTINATION bin)

0 commit comments

Comments
 (0)