mirror of
https://github.com/glest/glest-source.git
synced 2025-02-25 04:02:30 +01:00
37 lines
1.2 KiB
CMake
37 lines
1.2 KiB
CMake
# Find the LuaJIT includes and library
|
|
#
|
|
# LUAJIT_INCLUDE_DIR - where to find lua.h
|
|
# LUAJIT_LIBRARIES - List of fully qualified libraries to link against
|
|
# LUAJIT_FOUND - Set to TRUE if found
|
|
|
|
# Copyright (c) 2012, Mark Vejvoda, <mark_vejvoda@hotmail.com>
|
|
#
|
|
# Redistribution and use is allowed according to the terms of the BSD license.
|
|
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
|
|
|
|
OPTION(WANT_STATIC_LIBS "builds as many static libs as possible" OFF)
|
|
IF(WANT_STATIC_LIBS)
|
|
OPTION(LUAJIT_FIND_STATIC "Set to ON to link your project with static library (instead of DLL)." ON)
|
|
ENDIF()
|
|
|
|
find_path(LUAJIT_INCLUDE_DIR luajit.h
|
|
NAMES luajit.h
|
|
PATH_SUFFIXES luajit-2.0)
|
|
|
|
if (LUAJIT_FIND_STATIC)
|
|
find_library(LUAJIT_LIBRARIES luajit.a
|
|
NAMES libluajit-5.1.a)
|
|
else (LUATJIT_FIND_STATIC)
|
|
find_library(LUAJIT_LIBRARIES luajit
|
|
NAMES luajit-5.1)
|
|
endif (LUAJIT_FIND_STATIC)
|
|
|
|
mark_as_advanced(LUAJIT_INCLUDE_DIR)
|
|
mark_as_advanced(LUAJIT_LIBRARIES)
|
|
|
|
# handle the QUIETLY and REQUIRED arguments and set LUAJIT_FOUND to TRUE if
|
|
# all listed variables are TRUE
|
|
INCLUDE(FindPackageHandleStandardArgs)
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(LUAJIT DEFAULT_MSG LUAJIT_LIBRARIES LUAJIT_INCLUDE_DIR)
|
|
|