# # This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # cmake_minimum_required (VERSION 2.8) project (MANGOS_VMAP_ASSEMB_IO) set(EXECUTABLE_NAME "vmap-assembler") # comment next line to disable debug mode #TODO: These should be general, not with the -D part for windows to work too? add_definitions("-DIOMAP_DEBUG") add_definitions("-DNO_CORE_FUNCS") include_directories( "${CMAKE_SOURCE_DIR}/src/shared" "${CMAKE_SOURCE_DIR}/src/game/vmap/" "${CMAKE_SOURCE_DIR}/dep/g3dlite/" "${CMAKE_SOURCE_DIR}/dep/g3dlite/G3D" "${CMAKE_SOURCE_DIR}/src/framework/" "${ACE_INCLUDE_DIR}" ) if(WIN32) # add resource file to windows build set(EXECUTABLE_SRCS ${EXECUTABLE_SRCS} vmap-assembler.rc) endif() add_executable(${EXECUTABLE_NAME} vmap_assembler.cpp ${EXECUTABLE_SRCS}) if(NOT ACE_USE_EXTERNAL) target_link_libraries(${EXECUTABLE_NAME} ace) else() target_link_libraries(${EXECUTABLE_NAME} ACE) endif() target_link_libraries(${EXECUTABLE_NAME} vmap g3dlite zlib) #Output the compiled exes to build/bin/$(Configuration)/tools directory on windows by default if(WIN32) if ( MSVC ) set_target_properties(${EXECUTABLE_NAME} PROPERTIES RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/bin/Release/tools RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/bin/Debug/tools ) elseif ( MINGW ) set_target_properties(${EXECUTABLE_NAME} PROPERTIES RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/bin/tools RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/bin/tools ) endif() endif() install(TARGETS ${EXECUTABLE_NAME} DESTINATION "${BIN_DIR}/${TOOLS_DIR}") if(WIN32 AND MSVC) install(FILES "${CMAKE_CURRENT_BINARY_DIR}/\${BUILD_TYPE}/${EXECUTABLE_NAME}.pdb" DESTINATION "${BIN_DIR}/${TOOLS_DIR}" CONFIGURATIONS Debug) endif()