Changeset 4414
- Timestamp:
- Mar 5, 2013 8:21:02 AM (12 years ago)
- Location:
- pjproject/trunk/pjmedia
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/include/pjmedia-videodev/config.h
r4016 r4414 133 133 #endif 134 134 135 /** 136 * Specify the SDL library name to be linked with Visual Studio project. 137 * By default, the name is autodetected based on SDL version ("sdl.lib" or 138 * "sdl2.lib"), but application may explicitly specify the library name if this 139 * autodetection fails. Common names are: "sdl2.lib" or "sdl.lib". 140 * 141 * Default: undeclared. 142 */ 143 #ifndef PJMEDIA_SDL_LIB 144 # undef PJMEDIA_SDL_LIB 145 #endif 135 146 136 147 /** -
pjproject/trunk/pjmedia/src/pjmedia-videodev/sdl_dev.c
r4157 r4414 1419 1419 1420 1420 #ifdef _MSC_VER 1421 # if SDL_VERSION_ATLEAST(2,0,0) 1421 # if defined(PJMEDIA_SDL_LIB) 1422 # pragma comment( lib, PJMEDIA_SDL_LIB) 1423 # elif SDL_VERSION_ATLEAST(2,0,0) 1422 1424 # pragma comment( lib, "sdl2.lib") 1423 1425 # elif SDL_VERSION_ATLEAST(1,3,0)
Note: See TracChangeset
for help on using the changeset viewer.