1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-20 01:11:46 +02:00
openrw/rwengine/CMakeLists.txt

20 lines
441 B
CMake
Raw Normal View History

FILE(GLOB_RECURSE RENDERWARE_SOURCES "src/*.cpp")
2013-09-09 01:18:36 +02:00
FILE(GLOB_RECURSE RENDERWARE_HEADERS "include/*.hpp")
2013-09-09 01:18:36 +02:00
source_group("Header Files" FILES ${RENDERWARE_HEADERS})
source_group("Source Files" FILES ${RENDERWARE_SOURCES})
2014-01-26 04:45:55 +01:00
add_library(rwengine
${RENDERWARE_SOURCES}
${RENDERWARE_HEADERS}
2013-07-02 08:06:03 +02:00
)
target_link_libraries(rwengine
sfml-window
sfml-audio
GLEW
mad
${OPENRW_PLATFORM_LIBS})
2014-08-15 23:49:58 +02:00
include_directories(include ${BULLET_INCLUDE_DIR})