summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuel Barney <samjbarney@gmail.com>2014-08-20 23:43:10 +0200
committerSamuel Barney <samjbarney@gmail.com>2014-08-20 23:43:10 +0200
commitf55440973f151f3d8ba33f0de6c952b9d7e589ac (patch)
treefd1aa25ece7f490f4ea00bf336f7d9635a4b46d0
parentReworked the current set of components to their most basic state (diff)
downloadcuberite-f55440973f151f3d8ba33f0de6c952b9d7e589ac.tar
cuberite-f55440973f151f3d8ba33f0de6c952b9d7e589ac.tar.gz
cuberite-f55440973f151f3d8ba33f0de6c952b9d7e589ac.tar.bz2
cuberite-f55440973f151f3d8ba33f0de6c952b9d7e589ac.tar.lz
cuberite-f55440973f151f3d8ba33f0de6c952b9d7e589ac.tar.xz
cuberite-f55440973f151f3d8ba33f0de6c952b9d7e589ac.tar.zst
cuberite-f55440973f151f3d8ba33f0de6c952b9d7e589ac.zip
-rw-r--r--src/Mobs/Components/CMakeLists.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Mobs/Components/CMakeLists.txt b/src/Mobs/Components/CMakeLists.txt
index 55600cff6..187384d7f 100644
--- a/src/Mobs/Components/CMakeLists.txt
+++ b/src/Mobs/Components/CMakeLists.txt
@@ -7,5 +7,6 @@ file(GLOB SOURCE
"*.cpp"
"*.h"
)
-
-add_library(Components ${SOURCE}) \ No newline at end of file
+if(NOT MSVC)
+ add_library(Components ${SOURCE})
+endif() \ No newline at end of file