Advertisement
Guest User

Untitled

a guest
Jan 25th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [awesome-flags]
  2. cmake.cflags.append = -pipe -Wall -Wextra -Wshadow -pedantic
  3. cmake.cflags.debug.append = -ggdb3 -O0
  4. cmake.cflags.minsizerel.append = -Os
  5. cmake.cflags.release.append = -O2
  6. cmake.cflags.relwithdebinfo.append = -O2 -ggdb3
  7. cmake.cxxflags.append = ${cmake.cflags.append}
  8. cmake.cxxflags.debug.append = ${cmake.cflags.debug.append}
  9. cmake.cxxflags.minsizerel.append = ${cmake.cflags.minsizerel.append}
  10. cmake.cxxflags.release.append = ${cmake.cflags.release.append}
  11. cmake.cxxflags.relwithdebinfo.append = ${cmake.cflags.relwithdebinfo.append}
  12. cmake.generator.override = Ninja
  13.  
  14. [debug]
  15. cmake.build_type.override = Debug
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement