From 00ecc7170c1273076b326e491cda4ea031db0d19 Mon Sep 17 00:00:00 2001 From: Andreas Schenk <andreas_schenk@hms.harvard.edu> Date: Mon, 9 Jul 2012 00:10:35 -0400 Subject: [PATCH] exclude molck from compliling on windows --- tools/molck/CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/molck/CMakeLists.txt b/tools/molck/CMakeLists.txt index 346f3466a..9a3fe56fb 100644 --- a/tools/molck/CMakeLists.txt +++ b/tools/molck/CMakeLists.txt @@ -1,3 +1,4 @@ -executable(NAME molck SOURCES main.cc +if (NOT WIN32) +executable(NAME molck SOURCES main.cc DEPENDS_ON ost_io STATIC) - +endif(WIN32) -- GitLab