1 /**
2 	SDL format support for PackageRecipe
3 
4 	Copyright: © 2014 rejectedsoftware e.K.
5 	License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file.
6 	Authors: Sönke Ludwig
7 */
8 module dub.recipe.sdl;
9 
10 import dub.recipe.packagerecipe;
11 
12 alias SDLNode = void*; // TODO
13 
14 void parseSDL(ref PackageRecipe recipe, SDLNode json, string parent_name)
15 {
16 	assert(false);
17 }