CMakeLists.txt 340 B

1234567891011
  1. if (BUILD_CLIENT)
  2. set(client_irrlicht_changes_SRCS
  3. ${CMAKE_CURRENT_SOURCE_DIR}/static_text.cpp
  4. ${CMAKE_CURRENT_SOURCE_DIR}/CGUITTFont.cpp
  5. )
  6. # CMake require us to set a local scope and then parent scope
  7. # Else the last set win in parent scope
  8. set(client_irrlicht_changes_SRCS ${client_irrlicht_changes_SRCS} PARENT_SCOPE)
  9. endif()