diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2007-02-23 15:31:46 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2007-02-23 15:31:46 (GMT) |
commit | 21a71f2c81353a63253b092d69d76f40d61d37fd (patch) | |
tree | 7be690e913605eaa0be0eb9e5b956b5453f964fb /Tests/SimpleExclude/dirC/dirB | |
parent | 2b3dae596acd10d0cc07345b25b38b93a62e3234 (diff) | |
download | CMake-21a71f2c81353a63253b092d69d76f40d61d37fd.zip CMake-21a71f2c81353a63253b092d69d76f40d61d37fd.tar.gz CMake-21a71f2c81353a63253b092d69d76f40d61d37fd.tar.bz2 |
ENH: Force libraries to be static
Diffstat (limited to 'Tests/SimpleExclude/dirC/dirB')
-rw-r--r-- | Tests/SimpleExclude/dirC/dirB/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/SimpleExclude/dirC/dirB/CMakeLists.txt b/Tests/SimpleExclude/dirC/dirB/CMakeLists.txt index 6caea32..ea4650c 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) |