mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 19:19:56 +00:00
Add OpenMW-mp target
This commit is contained in:
parent
7f7e8c63bf
commit
4be6b362c5
4 changed files with 29 additions and 0 deletions
|
@ -60,6 +60,7 @@ option(OPENMW_UNITY_BUILD "Use fewer compilation units to speed up compile time"
|
|||
|
||||
# Apps and tools
|
||||
option(BUILD_OPENMW "build OpenMW" ON)
|
||||
option(BUILD_OPENMW_MP "build OpenMW-MP" ON)
|
||||
option(BUILD_BSATOOL "build BSA extractor" ON)
|
||||
option(BUILD_ESMTOOL "build ESM inspector" ON)
|
||||
option(BUILD_LAUNCHER "build Launcher" ON)
|
||||
|
@ -114,6 +115,10 @@ endif()
|
|||
# We probably support older versions than this.
|
||||
cmake_minimum_required(VERSION 2.6)
|
||||
|
||||
|
||||
find_package(RakNet REQUIRED)
|
||||
include_directories(${RakNet_INCLUDES})
|
||||
|
||||
# Sound setup
|
||||
unset(FFMPEG_LIBRARIES CACHE)
|
||||
|
||||
|
@ -568,6 +573,10 @@ add_subdirectory (components)
|
|||
#endif()
|
||||
|
||||
# Apps and tools
|
||||
if (BUILD_OPENMW_MP)
|
||||
add_subdirectory( apps/openmw-mp )
|
||||
endif()
|
||||
|
||||
if (BUILD_OPENMW)
|
||||
add_subdirectory( apps/openmw )
|
||||
endif()
|
||||
|
|
5
apps/openmw/mwmp/Player.cpp
Normal file
5
apps/openmw/mwmp/Player.cpp
Normal file
|
@ -0,0 +1,5 @@
|
|||
//
|
||||
// Created by koncord on 02.01.16.
|
||||
//
|
||||
|
||||
#include "Player.hpp"
|
15
apps/openmw/mwmp/Player.hpp
Normal file
15
apps/openmw/mwmp/Player.hpp
Normal file
|
@ -0,0 +1,15 @@
|
|||
//
|
||||
// Created by koncord on 02.01.16.
|
||||
//
|
||||
|
||||
#ifndef OPENMW_PLAYER_HPP
|
||||
#define OPENMW_PLAYER_HPP
|
||||
|
||||
|
||||
class Player
|
||||
{
|
||||
|
||||
};
|
||||
|
||||
|
||||
#endif //OPENMW_PLAYER_HPP
|
Loading…
Reference in a new issue