summaryrefslogtreecommitdiff
path: root/Modules/FindLua50.cmake
Commit message (Collapse)AuthorAgeFilesLines
* Convert CMake find-modules to BSD LicenseBrad King2009-09-281-0/+12
| | | | | | | This adds copyright/license notification blocks CMake's find-modules. Many of the modules had no notices at all. Some had notices referring to the BSD license already. This commit normalizes existing notices and adds missing notices.
* BUG: Fixes detection of lua libraries installed from FreeBSD ports (Issue #8421)Philip Lowman2009-01-301-1/+1
|
* BUG: fix documentation, the variables are named LUA50_FOUND and LUA51_FOUNDAlexander Neundorf2008-08-141-1/+1
| | | | | | (in all released versions) Alex
* ENH: Cleanup Find* modules with new HINTS featureBrad King2008-06-091-21/+4
| | | | | | | | | | - The find_* commands now provide a HINTS option. - The option specifies paths to be preferred over the system paths. - Many Find* modules were using two find calls with NO_DEFAULT_PATH to approximate the behavior, but that blocked users from overriding things with CMAKE_PREFIX_PATH. - This commit uses the HINTS feature to get desired behavior in only one find command call.
* ENH: use the standard find_package_handle_standard_args() for lua 5.0 andAlexander Neundorf2008-03-101-9/+10
| | | | | | 5.1 Alex
* BUG: Remove references to CMAKE_PREFIX_PATH variable. It should not be ↵Brad King2008-01-151-17/+3
| | | | referenced directly by FIND_* command calls. The commands search it automatically.
* BUG: Fixed modules to set FOO_FOUND when both headers and libraries are found.Eric Wing2007-12-201-0/+114
BUG: FindSDL now has flag it responds to so it will not find/link against SDLmain. This is required to build libraries instead of applications since they don't have main(). ENH: All modules have a predictable search order, where environmental variables are searched before system paths. This is designed to make automation easier for those that need to automatically build projects without intervention but may be using alternative install locations for isolated testing. ENH: New modules for OpenSceneGraph, Freetype, GDAL, Lua, QuickTime, GIFLIB, Producer, OpenThreads. STYLE: Added documentation explaining peculuar SDL_LIBRARY_TEMP variable in SDL module when library find is incomplete.