summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2016-05-30 01:18:32 +0000
committerLang Hames <lhames@gmail.com>2016-05-30 01:18:32 +0000
commit9aaeb83f58ccc51e3eaf63ae058ec83c16da9256 (patch)
treed0d19ad41f96f29b42af7d4c887c63ccb559115a /examples
parent203f697825c348e4c2c2bdd6efa2602564e67b70 (diff)
[Kaleidoscope][BuildingAJIT] Don't build Chapter 5 on Windows for now.
The TCP setup code is currently *nix based and does not build on Windows. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@271194 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r--examples/Kaleidoscope/BuildingAJIT/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/Kaleidoscope/BuildingAJIT/CMakeLists.txt b/examples/Kaleidoscope/BuildingAJIT/CMakeLists.txt
index 17e280c1671..947b5a3a327 100644
--- a/examples/Kaleidoscope/BuildingAJIT/CMakeLists.txt
+++ b/examples/Kaleidoscope/BuildingAJIT/CMakeLists.txt
@@ -2,5 +2,7 @@ add_subdirectory(Chapter1)
add_subdirectory(Chapter2)
add_subdirectory(Chapter3)
add_subdirectory(Chapter4)
-add_subdirectory(Chapter5)
+if (NOT WIN32)
+ add_subdirectory(Chapter5)
+endif()