Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 0.23 KB | None | 0 0
  1. cmake_minimum_required(VERSION 2.8)
  2.  
  3. project(skyoralis)
  4.  
  5. set(LIBRARY_OUTPUT_PATH lib)
  6. include_directories(include)
  7.  
  8. file(
  9.     GLOB_RECURSE
  10.     src_files
  11. #   src/*
  12.     include/*
  13. )
  14.  
  15. add_library(
  16.     skyoralis
  17.     SHARED
  18.     ${src_files}
  19. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement