From d248ee5273db977dc1f8a88bfa39056eea141f0c Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Jan 2014 06:38:50 -0700 Subject: [PATCH] Add project build scaffolding --- CMakeLists.txt | 7 +++++++ engine/CMakeLists.txt | 2 ++ engine/shared/CMakeLists.txt | 2 ++ engine/shared/library/CMakeLists.txt | 3 +++ external/CMakeLists.txt | 2 ++ external/ours/CMakeLists.txt | 2 ++ external/ours/library/CMakeLists.txt | 2 ++ 7 files changed, 20 insertions(+) create mode 100644 CMakeLists.txt create mode 100644 engine/CMakeLists.txt create mode 100644 engine/shared/CMakeLists.txt create mode 100644 engine/shared/library/CMakeLists.txt create mode 100644 external/CMakeLists.txt create mode 100644 external/ours/CMakeLists.txt create mode 100644 external/ours/library/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 00000000..2af3347d --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,7 @@ + +cmake_minimum_required(VERSION 2.8) + +project(swgnge) + +add_subdirectory(external) +add_subdirectory(engine) diff --git a/engine/CMakeLists.txt b/engine/CMakeLists.txt new file mode 100644 index 00000000..42904cb2 --- /dev/null +++ b/engine/CMakeLists.txt @@ -0,0 +1,2 @@ + +add_subdirectory(shared) diff --git a/engine/shared/CMakeLists.txt b/engine/shared/CMakeLists.txt new file mode 100644 index 00000000..64660762 --- /dev/null +++ b/engine/shared/CMakeLists.txt @@ -0,0 +1,2 @@ + +add_subdirectory(library) diff --git a/engine/shared/library/CMakeLists.txt b/engine/shared/library/CMakeLists.txt new file mode 100644 index 00000000..b5ab4cdb --- /dev/null +++ b/engine/shared/library/CMakeLists.txt @@ -0,0 +1,3 @@ + +add_subdirectory(sharedFoundation) +add_subdirectory(sharedNetworkMessages) diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt new file mode 100644 index 00000000..28d749c5 --- /dev/null +++ b/external/CMakeLists.txt @@ -0,0 +1,2 @@ + +add_subdirectory(ours) diff --git a/external/ours/CMakeLists.txt b/external/ours/CMakeLists.txt new file mode 100644 index 00000000..64660762 --- /dev/null +++ b/external/ours/CMakeLists.txt @@ -0,0 +1,2 @@ + +add_subdirectory(library) diff --git a/external/ours/library/CMakeLists.txt b/external/ours/library/CMakeLists.txt new file mode 100644 index 00000000..d3037e4b --- /dev/null +++ b/external/ours/library/CMakeLists.txt @@ -0,0 +1,2 @@ + +add_subdirectory(archive)