Files
TrinityCore/dep/libmpq/CMakeLists.txt
Naios 1a572d2425 CMake: Provide proper interface targets from dependencies
* to make use of cmakes inherited link dependencies which
  imports all include directories/ definitions from the link library
2016-03-18 02:52:54 +01:00

37 lines
988 B
CMake

# Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
#
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without
# modifications, as long as this notice is preserved.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
file(GLOB sources libmpq/*.c libmpq/*.h)
add_library(mpq STATIC ${sources})
set_target_properties(mpq PROPERTIES LINKER_LANGUAGE CXX)
if(WIN32)
set(WIN_EXTRA_INCLUDE ${CMAKE_CURRENT_SOURCE_DIR}/win)
endif()
target_include_directories(mpq
PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}
${WIN_EXTRA_INCLUDE}
${CMAKE_SOURCE_DIR}/dep/zlib
${CMAKE_SOURCE_DIR}/dep/bzip2)
target_link_libraries(mpq
PUBLIC
zlib
bzip2)
set_target_properties(mpq
PROPERTIES
FOLDER
"dep")