summaryrefslogtreecommitdiff
path: root/src/BulletSoftBody/premake4.lua
blob: a75e336194d903edfd800fd0c7dd874fc3c69670 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
	project "BulletSoftBody"
		
	kind "StaticLib"
	
	includedirs {
		"..",
	}
    if os.is("Linux") then
        buildoptions{"-fPIC"}
    end
	files {
		"**.cpp",
		"**.h"
	}