Mercurial > luasocket
view src/mime/CMakeLists.txt @ 4:f0a27ccb1193 tip
Added ignore file
author | Eric Wing <ewing . public |-at-| gmail . com> |
---|---|
date | Sat, 30 Aug 2008 08:46:39 -0700 |
parents | 9d9266316a91 |
children |
line wrap: on
line source
# Ugh. I'm very irritated that the Luasocket people rename the modules to "core". (No prefix, .dll/.so suffix). This makes life difficult because I can't build the libraries directly with the name because there are two libraries (socket, mime) so the names conflict with each other. # Furthermore, CMake doesn't offer good support for renaming TARGETS on install. # The easiest way to work around this problem was create a new subdirectory just for the mime plugin and build directly to the name 'core'. SET(luasocket_MIME ${LuaSocket_SOURCE_DIR}/src/mime.c ) SET(luasocket_MIME_PUBLIC_HEADERS ${LuaSocket_SOURCE_DIR}/src/mime.h ) SET(luamime_RESOURCE_FILES # handled in above script # ${LuaSocket_SOURCE_DIR}/src/mime.lua ) IF(WANTS_BUILD_MODULE_LIBRARY) ADD_LIBRARY(luamime_library_module MODULE ${luasocket_MIME_PUBLIC_HEADERS} ${luasocket_MIME}) SET_TARGET_PROPERTIES(luamime_library_module PROPERTIES PREFIX "" OUTPUT_NAME "core" ) SET_TARGET_PROPERTIES(luamime_library_module PROPERTIES COMPILE_FLAGS "${LUASOCKET_C_FLAGS}") TARGET_LINK_LIBRARIES(luamime_library_module ${LUA_LIBRARIES} ${LUASOCKET_LINK_FLAGS}) ENDIF(WANTS_BUILD_MODULE_LIBRARY) IF(WANTS_BUILD_STATIC_LIBRARY) ADD_LIBRARY(luamime_library_static STATIC ${luasocket_MIME_PUBLIC_HEADERS} ${luasocket_MIME}) SET_TARGET_PROPERTIES(luamime_library_static PROPERTIES OUTPUT_NAME "luasocketmime") SET_TARGET_PROPERTIES(luamime_library_static PROPERTIES COMPILE_FLAGS "${LUASOCKET_C_FLAGS}") TARGET_LINK_LIBRARIES(luamime_library_static ${LUA_LIBRARIES} ${LUASOCKET_LINK_FLAGS}) ENDIF(WANTS_BUILD_STATIC_LIBRARY) IF(WANTS_BUILD_STATIC_LIBRARY) INSTALL(TARGETS luamime_library_static # RUNTIME DESTINATION bin LIBRARY DESTINATION lib ARCHIVE DESTINATION lib # ARCHIVE DESTINATION lib/static ) ENDIF(WANTS_BUILD_STATIC_LIBRARY) IF(WANTS_BUILD_MODULE_LIBRARY) INSTALL(TARGETS luamime_library_module DESTINATION ${LUAPACKAGE_CDIR}/mime) ENDIF(WANTS_BUILD_MODULE_LIBRARY) INSTALL(FILES ${luamime_RESOURCE_FILES} DESTINATION ${LUAPACKAGE_LDIR}/mime) INSTALL(FILES ${luasocket_MIME_PUBLIC_HEADERS} DESTINATION include)