Advertisement
Guest User

premake4.lua

a guest
Jan 22nd, 2013
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 KB | None | 0 0
  1. dofile("find_ipp.lua")
  2.  
  3. solution "premake-ipp-example"
  4.     configurations { "Release", "Debug" }
  5.     platforms { "x64", "x32" }
  6.     location "build"
  7.  
  8.     project "example"
  9.         targetdir "build"
  10.         language "C"
  11.         kind "ConsoleApp"
  12.         files { "*.c" }
  13.  
  14.         found.ipp { "s" }
  15.  
  16.         if os.is("linux") then
  17.             links { "pthread", "dl" }
  18.         end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement