Guest User

Untitled

a guest
Jul 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. cmake_minimum_required(VERSION 3.12)
  2. project(objectlib LANGUAGES CXX)
  3.  
  4. add_library(box OBJECT box.cc box.hh)
  5. add_library(make_box OBJECT make_box.cc make_box.hh)
  6. target_link_libraries(make_box PUBLIC box)
  7.  
  8. add_executable(main main.cc)
  9. target_link_libraries(main PUBLIC make_box)
Add Comment
Please, Sign In to add comment