mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-09-01 07:42:40 -06:00
28 lines
462 B
Text
28 lines
462 B
Text
description "SDL in an U++ control\377";
|
|
|
|
uses
|
|
Core,
|
|
CtrlLib;
|
|
|
|
library(MSC) "SDL SDLmain";
|
|
|
|
|
|
library(GCC WIN32 !SHARED) "SDL.dll SDLmain mingw32";
|
|
|
|
library(GCC WIN32 SHARED) "SDL SDLmain mingw32";
|
|
|
|
library(LINUX) "SDL SDLmain";
|
|
|
|
library(FREEBSD) "SDL SDLmain X11 Xext Xrandr Xrender vga vgl aa usbhid ncurses";
|
|
|
|
link(MSC DEBUG) /NODEFAULTLIB:msvcrt.lib;
|
|
|
|
file
|
|
SDLCtrl.cpp,
|
|
SDLCtrl.h,
|
|
SDLCtrl.usc,
|
|
SDLCtrl.iml,
|
|
SDLSurface.cpp,
|
|
SDLWrapper.h,
|
|
srcdoc.tpp;
|
|
|