mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-10 04:42:38 +01:00
97ad0414f7
+ MADStream probably needs a good look over, for saftey's sake
15 lines
410 B
CMake
15 lines
410 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 sfml-window sfml-audio GLEW mad)
|
|
|
|
include_directories(include /usr/include/bullet)
|