mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-07 11:22:45 +01:00
18 lines
339 B
CMake
18 lines
339 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(OpenRW)
|
|
|
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -std=c++11 -Wall" )
|
|
|
|
# Make GLM use radians
|
|
add_definitions(-DGLM_FORCE_RADIANS)
|
|
|
|
add_subdirectory(datadump)
|
|
add_subdirectory(rwgame)
|
|
add_subdirectory(rwviewer)
|
|
add_subdirectory(rwengine)
|
|
|
|
add_subdirectory(analyzer)
|
|
|
|
add_subdirectory(tests)
|