misc/liblua/CMakeLists.txt
author unc0rr
Mon, 19 Sep 2011 23:55:52 +0400
changeset 5955 07f6fa51ea58
parent 5171 f9283dc4860d
child 7031 d5ea24399a48
permissions -rw-r--r--
- Unset hhdriven flag for gone hedgehog - Fix incorrect work with states in gstWait state handler - These two changes fix the bug with hogs of gone team not disappearing

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)