Skip to content

Commit

Permalink
Make make install less verbose (#364)
Browse files Browse the repository at this point in the history
This prevents `make install` from printing "Up-to-date: ..." for every single unchanged header file every time the pono binary/library is rebuilt.
  • Loading branch information
CyanoKobalamyne authored Jan 24, 2025
1 parent 4b49035 commit 0cf5a71
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,8 @@ if ("${PONO_STATIC_EXEC}" STREQUAL "YES")
target_link_libraries(pono-bin PUBLIC -static)
endif()

set(CMAKE_INSTALL_MESSAGE LAZY)

# install smt-switch
install(TARGETS pono-lib DESTINATION lib)
install(TARGETS pono-bin DESTINATION bin)
Expand Down

0 comments on commit 0cf5a71

Please sign in to comment.