misc/liblua/CMakeLists.txt
author sheepluva
Thu, 01 Apr 2010 08:26:16 +0000
changeset 3231 a578cbf5d543
parent 3069 ad66452d6e8f
child 3244 654795439cf8
permissions -rw-r--r--
* fix SmokeTrace and EvilTrace to be centered instead of 2 pixel off * ran "optipng -o5 -np -nc -nb *.png" on Data/Graphics

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

IF(APPLE)
#	set(CMAKE_OSX_ARCHITECTURES "x86_64;i386;ppc7400")	
	
	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})
ENDIF(WIN32)

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