Guest User

Untitled

a guest
Jan 24th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. add_library(mylib SHARED lib.cpp) #creates libmylib.so
  2. add_executable(myapp main.cpp)
  3. target_link_libraries(myapp my-lib)
  4.  
  5. install(TARGETS mylib myapp
  6. RUNTIME DESTINATION bin
  7. LIBRARY DESTINATION lib
  8. )
Add Comment
Please, Sign In to add comment