From 21a71f2c81353a63253b092d69d76f40d61d37fd Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Fri, 23 Feb 2007 10:31:46 -0500 Subject: [PATCH] ENH: Force libraries to be static --- Tests/SimpleExclude/dirC/dirA/CMakeLists.txt | 4 ++-- Tests/SimpleExclude/dirC/dirB/CMakeLists.txt | 4 ++-- Tests/SimpleExclude/dirD/CMakeLists.txt | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Tests/SimpleExclude/dirC/dirA/CMakeLists.txt b/Tests/SimpleExclude/dirC/dirA/CMakeLists.txt index 5a7a9cb99..52fac8183 100644 --- a/Tests/SimpleExclude/dirC/dirA/CMakeLists.txt +++ b/Tests/SimpleExclude/dirC/dirA/CMakeLists.txt @@ -1,6 +1,6 @@ -add_library(t1 t1.c) +add_library(t1 STATIC t1.c) -add_library(t2 t2.c) +add_library(t2 STATIC t2.c) add_executable(t3 t3.c) diff --git a/Tests/SimpleExclude/dirC/dirB/CMakeLists.txt b/Tests/SimpleExclude/dirC/dirB/CMakeLists.txt index 6caea329e..ea4650c4a 100644 --- a/Tests/SimpleExclude/dirC/dirB/CMakeLists.txt +++ b/Tests/SimpleExclude/dirC/dirB/CMakeLists.txt @@ -1,5 +1,5 @@ -add_library(t6 t6.c) +add_library(t6 STATIC t6.c) -add_library(t7 t7.c) +add_library(t7 STATIC t7.c) target_link_libraries(t7 t2) diff --git a/Tests/SimpleExclude/dirD/CMakeLists.txt b/Tests/SimpleExclude/dirD/CMakeLists.txt index 0e89d0f9e..44b8c27b6 100644 --- a/Tests/SimpleExclude/dirD/CMakeLists.txt +++ b/Tests/SimpleExclude/dirD/CMakeLists.txt @@ -1,4 +1,4 @@ -add_library(t8 t8.c) +add_library(t8 STATIC t8.c) add_executable(t9 t9.c) target_link_libraries(t9 t7)