mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-07 11:22:45 +01:00
31 lines
616 B
CMake
31 lines
616 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
|
|
${MAD_LIBRARY}
|
|
${SFML_LIBRARIES}
|
|
${LIBSNDFILE_LIBRARY}
|
|
${OPENAL_LIBRARY}
|
|
${OPENRW_PLATFORM_LIBS})
|
|
|
|
include_directories(SYSTEM
|
|
${BULLET_INCLUDE_DIR}
|
|
${MAD_INCLUDE_DIR}
|
|
${SFML_INCLUDE_DIR}
|
|
${LIBSNDFILE_INCLUDE_DIR}
|
|
${OPENAL_INCLUDE_DIR}
|
|
)
|
|
|
|
include_directories(
|
|
include
|
|
)
|