14 lines
287 B
Text
14 lines
287 B
Text
project Video_SDL extends "common" is
|
|
|
|
for Library_Name use "Video_SDL";
|
|
|
|
for Source_Dirs use ("source", "source/backends/sdl");
|
|
for Object_Dir use "build/objects";
|
|
|
|
for Library_Kind use "static";
|
|
|
|
package Linker is
|
|
for Linker_Options use ("-lSDL2");
|
|
end Linker;
|
|
|
|
end Video_SDL;
|