Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
78
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 2.8)
  2. project(TEST)
  3.  
  4. set(msg "line1nline2nline3")
  5. message(STATUS ${msg})
  6.  
  7. -- line1
  8. line2
  9. line3
  10.  
  11. -- line1
  12. -- line2
  13. -- line3
  14.  
  15. set(msg "line1nline2nline3")
  16. string(REPLACE "n" "n-- " ${msg} ${msg})
  17. message(STATUS ${msg})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement