mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-07 19:32:49 +01:00
16 lines
396 B
CMake
16 lines
396 B
CMake
FILE(GLOB_RECURSE RENDERWARE_SOURCES "*.cpp")
|
|
FILE(GLOB_RECURSE RENDERWARE_HEADERS "include/*.hpp")
|
|
|
|
source_group("Header Files" FILES ${RENDERWARE_HEADERS})
|
|
source_group("Source Files" FILES ${RENDERWARE_SOURCES})
|
|
|
|
|
|
add_library(renderware
|
|
${RENDERWARE_SOURCES}
|
|
${RENDERWARE_HEADERS}
|
|
)
|
|
|
|
target_link_libraries(renderware sfml-window GLEW)
|
|
|
|
include_directories(include /usr/include/bullet)
|