lmariscal

Library CMAKE

Aug 8th, 2017
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 0.13 KB | None | 0 0
  1. cmake_minimum_required(VERSION 3.7)
  2. project(imgui)
  3.  
  4. set(CMAKE_CXX_STANDARD 11)
  5. file(GLOB SRCS *.cpp *.h)
  6.  
  7. add_library(imgui ${SRCS})
Advertisement
Add Comment
Please, Sign In to add comment