File: premake4.lua

package info (click to toggle)
bullet 3.24%2Bdfsg-2.1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 15,168 kB
  • sloc: cpp: 246,331; lisp: 12,017; ansic: 11,175; python: 630; makefile: 136; sh: 75
file content (27 lines) | stat: -rw-r--r-- 346 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27


project ("Test_clew")

	language "C++"
			
	kind "ConsoleApp"
	
	includedirs {"../../src/clew"}
	
	if os.is("Windows") then 
		defines { "WIN32" }
		links {"Ws2_32","Winmm"}
	end
	if os.is("Linux") then
		links {"dl"}
	end
	if os.is("MacOSX") then
	end		
		
	
	files {
		"clewTest.cpp",
		"../../src/clew/clew.c",
		"../../src/clew/clew.h"
	}