mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-07 06:02:28 +02:00
stub setup for eve
This commit is contained in:
parent
1c6048e2e9
commit
38f8769ff6
3 changed files with 27 additions and 0 deletions
|
@ -5,6 +5,7 @@ project(hifi)
|
|||
add_subdirectory(avatar-mixer)
|
||||
add_subdirectory(audio-mixer)
|
||||
add_subdirectory(domain-server)
|
||||
add_subdirectory(eve)
|
||||
add_subdirectory(interface)
|
||||
add_subdirectory(injector)
|
||||
add_subdirectory(space-server)
|
||||
|
|
13
eve/CMakeLists.txt
Normal file
13
eve/CMakeLists.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
cmake_minimum_required(VERSION 2.8)
|
||||
|
||||
set(ROOT_DIR ..)
|
||||
set(MACRO_DIR ${ROOT_DIR}/cmake/macros)
|
||||
|
||||
set(TARGET_NAME eve)
|
||||
|
||||
include(${MACRO_DIR}/SetupHifiProject.cmake)
|
||||
setup_hifi_project(${TARGET_NAME})
|
||||
|
||||
# link the shared hifi library
|
||||
include(${MACRO_DIR}/LinkHifiLibrary.cmake)
|
||||
link_hifi_library(shared ${TARGET_NAME} ${ROOT_DIR})
|
13
eve/src/main.cpp
Normal file
13
eve/src/main.cpp
Normal file
|
@ -0,0 +1,13 @@
|
|||
//
|
||||
// main.cpp
|
||||
// eve
|
||||
//
|
||||
// Created by Stephen Birarda on 4/22/13.
|
||||
// Copyright (c) 2013 High Fidelity, Inc. All rights reserved.
|
||||
//
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Reference in a new issue