1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-28 20:27:46 +00:00

No need for messages

This commit is contained in:
Maru 2018-03-16 19:28:31 -03:00
parent 9ea48e2524
commit 01249a69d0
3 changed files with 0 additions and 6 deletions

View file

@ -13,10 +13,6 @@ set(RUNTIME_OUTPUT_DIRECTORY "${SCRIPT_LIB_DIR}")
file(GLOB children "${CMAKE_CURRENT_SOURCE_DIR}/*" )
if(Cotire_ENABLED)
message( "Cotire enabled for scripts" )
endif()
foreach(_scriptDir ${children})
get_filename_component(_name "${_scriptDir}" NAME_WE)
if(IS_DIRECTORY ${_scriptDir} AND NOT ${_name} MATCHES "CMakeFiles")

View file

@ -29,6 +29,5 @@ endif()
target_link_libraries(sapphire_lobby ${Boost_LIBRARIES} ${Boost_LIBRARIES})
if(Cotire_ENABLED)
message( "Cotire enabled for sapphire_lobby" )
cotire( sapphire_lobby )
endif()

View file

@ -68,6 +68,5 @@ target_include_directories( sapphire_zone PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}" )
target_include_directories( sapphire_zone PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/Script" )
target_include_directories( sapphire_zone PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/../../libraries/external" )
if (UNIX AND Cotire_ENABLED)
message( "Cotire enabled for sapphire_zone" )
cotire( sapphire_zone )
endif()