Files
DarkRP2D/external/entityx-1.1.2/entityx-config.cmake
2018-05-10 23:36:35 +02:00

10 lines
361 B
CMake

set(ENTITYX_INCLUDE_DIRS "${CMAKE_CURRENT_LIST_DIR}/entityx")
# Support both 32 and 64 bit builds
if (${CMAKE_SIZEOF_VOID_P} MATCHES 8)
else ()
set(ENTITYX_LIBRARIES "${CMAKE_CURRENT_LIST_DIR}/build/Release/entityx.lib")
set(ENTITYX_DLL "${CMAKE_CURRENT_LIST_DIR}/build/Release/entityx.dll")
endif ()
string(STRIP "${ENTITYX_LIBRARIES}" ENTITYX_LIBRARIES)