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)