File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -68,15 +68,17 @@ add_library(cpptcl SHARED ${SRCS} ${HDRS} ${HDRS_DETAILS})
68
68
add_library (cpptcl_static STATIC ${SRCS} ${HDRS} ${HDRS_DETAILS} )
69
69
set_property (TARGET cpptcl_static PROPERTY POSITION_INDEPENDENT_CODE ON )
70
70
target_link_libraries (cpptcl ${TCL_STUB_LIBRARY} )
71
- install (TARGETS cpptcl LIBRARY DESTINATION lib )
72
- install (TARGETS cpptcl_static ARCHIVE DESTINATION lib )
73
- install (FILES ${HDRS} DESTINATION include /cpptcl )
74
- install (FILES ${HDRS_DETAILS} DESTINATION include /cpptcl/details )
75
71
76
72
add_library (cpptcl_runtime STATIC ${cpptcl_SOURCE_DIR} /cpptcl_runtime.c )
77
73
set_property (TARGET cpptcl_runtime PROPERTY POSITION_INDEPENDENT_CODE ON )
78
74
target_link_libraries (cpptcl_runtime ${TCL_LIBRARY} )
79
75
76
+ install (TARGETS cpptcl LIBRARY DESTINATION lib )
77
+ install (TARGETS cpptcl_static ARCHIVE DESTINATION lib )
78
+ install (TARGETS cpptcl_runtime ARCHIVE DESTINATION lib )
79
+ install (FILES ${HDRS} DESTINATION include /cpptcl )
80
+ install (FILES ${HDRS_DETAILS} DESTINATION include /cpptcl/details )
81
+
80
82
add_subdirectory (test EXCLUDE_FROM_ALL )
81
83
add_subdirectory (examples EXCLUDE_FROM_ALL )
82
84
You can’t perform that action at this time.
0 commit comments