Skip to content

Commit

Permalink
cmake: fix msvc complaints about target dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
LER0ever committed Oct 17, 2018
1 parent a1952e3 commit b19e831
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Expand Up @@ -106,9 +106,9 @@ if(BUILD_RTLIB)
if(TARGET dyninstAPI-static)
add_dependencies(dyninstAPI-static DyninstRT)
endif()
endif()
if(TARGET boost)
add_dependencies(DyninstRT boost)
if(TARGET boost)
add_dependencies(DyninstRT boost)
endif()
endif()

install(SCRIPT "${RT_BINARY_DIR}/cmake_install.cmake")
Expand Down

0 comments on commit b19e831

Please sign in to comment.