misc/liblua/CMakeLists.txt
author koda
Sat, 26 Nov 2011 17:47:55 +0100
changeset 6441 9e5a3b2a3c38
parent 5171 f9283dc4860d
child 7031 d5ea24399a48
permissions -rw-r--r--
raise the minimum qt version required to 4.6; this was needed as the new animation frameworks were absent in 4.5 and lower

file(GLOB lua_src *.c *.h)
set(LIBRARY_OUTPUT_PATH ${EXECUTABLE_OUTPUT_PATH})

IF(APPLE)
	set(build_type STATIC)
	add_definitions(-DLUA_USE_LINUX)
	add_library (lua ${build_type} ${lua_src})
ENDIF(APPLE)

IF(WIN32)
	set(build_type SHARED)
	add_definitions(-DLUA_BUILD_AS_DLL)
	add_library (lua ${build_type} ${lua_src})

	SET_TARGET_PROPERTIES(lua PROPERTIES PREFIX "")
	install(TARGETS lua RUNTIME DESTINATION ${target_dir})
endif(WIN32)