1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-20 17:31:44 +02:00
openrw/rwengine/CMakeLists.txt

20 lines
442 B
CMake

FILE(GLOB_RECURSE RENDERWARE_SOURCES "src/*.cpp")
FILE(GLOB_RECURSE RENDERWARE_HEADERS "include/*.hpp")
source_group("Header Files" FILES ${RENDERWARE_HEADERS})
source_group("Source Files" FILES ${RENDERWARE_SOURCES})
add_library(rwengine
${RENDERWARE_SOURCES}
${RENDERWARE_HEADERS}
)
target_link_libraries(rwengine
rwlib
sfml-window
sfml-audio
mad
${OPENRW_PLATFORM_LIBS})
include_directories(include ${BULLET_INCLUDE_DIR})