misc/liblua/CMakeLists.txt
author smxx
Wed, 17 Feb 2010 20:03:25 +0000
changeset 2822 0533562bc3a4
parent 2812 0a24853de796
child 2929 dd4efe601bc6
permissions -rw-r--r--
Engine: * Use included Lua source files to compile a local copy to be used (Koda) Frontend: * Changed the way Xfire code is excluded outside Win32 * Updated slovak translation by jose1711__
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2822
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
     1
file(GLOB lua_src *.c *.h) 
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
     2
set(LIBRARY_OUTPUT_PATH ${EXECUTABLE_OUTPUT_PATH})
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
     3
2812
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     4
IF(APPLE)
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     5
	set(CMAKE_OSX_ARCHITECTURES "x86_64;i386;ppc7400")	
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     6
	
2822
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
     7
	set(build_type STATIC)
2812
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     8
	add_definitions(-DLUA_USE_LINUX)
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     9
ENDIF(APPLE)
2822
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
    10
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
    11
IF(WIN32)
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
    12
	set(build_type SHARED)
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
    13
	add_definitions(-DLUA_BUILD_AS_DLL)
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
    14
ENDIF(WIN32)
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
    15
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
    16
add_library (lua ${build_type} ${lua_src})
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
    17
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
    18
if(WIN32)
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
    19
	SET_TARGET_PROPERTIES(lua PROPERTIES PREFIX "")
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
    20
	install(TARGETS lua DESTINATION ${target_dir})
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
    21
endif(WIN32)
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
    22
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
    23
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
    24