From e18d6cd4550552df93e1b87899ea75b4447225e6 Mon Sep 17 00:00:00 2001 From: peter Date: Sun, 13 Jan 2019 22:50:07 -0800 Subject: [PATCH] Fix static build on Windows (#15989) Summary: Tested locally. It could be now be started by running `set EXTRA_CAFFE2_CMAKE_FLAGS= -DTORCH_STATIC=1` before build. If we want to make sure it works, then maybe we should add it into CI. Pull Request resolved: https://github.com/pytorch/pytorch/pull/15989 Differential Revision: D13649935 Pulled By: soumith fbshipit-source-id: 956945ed572819d8cf0bc9bd48df3ea9bc6f4a8a --- torch/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torch/CMakeLists.txt b/torch/CMakeLists.txt index 309fcd4..72f3431 100644 --- a/torch/CMakeLists.txt +++ b/torch/CMakeLists.txt @@ -258,8 +258,8 @@ endif() if (TORCH_STATIC) - target_compile_definitions(torch PUBLIC TORCH_BUILD_STATIC_LIBS) add_library(torch STATIC ${TORCH_SRCS}) + target_compile_definitions(torch PUBLIC TORCH_BUILD_STATIC_LIBS) else() add_library(torch SHARED ${TORCH_SRCS}) endif() -- 2.7.4