summaryrefslogtreecommitdiff
path: root/Jamroot.jam
blob: 33c67c439132fdebbca1021a8fcf9b7c9613d429 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using gcc ;
using pkg-config ;
import pkg-config ;

pkg-config.import sdl2 ;
pkg-config.import glew ;
lib stb : : : : <include>/usr/include/stb ;

exe test :
	[ glob *.cpp *.c ]
	:
	<library>sdl2
	<library>glew
	<use>stb
	;