ENH: Force libraries to be static
This commit is contained in:
parent
2b3dae596a
commit
21a71f2c81
|
@ -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)
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue