This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/library/matrix/CMakeLists.txt

14 lines
289 B
CMake
Raw Normal View History

2014-12-14 12:05:43 +00:00
2019-01-09 09:32:09 +00:00
add_library(matrix matrix.c)
2014-12-14 12:05:43 +00:00
target_link_libraries(matrix libYap)
set_target_properties (matrix PROPERTIES PREFIX "")
install(TARGETS matrix
2018-11-16 14:02:56 +00:00
RUNTIME DESTINATION ${YAP_INSTALL_LIBDIR}
ARCHIVE DESTINATION ${YAP_INSTALL_LIBDIR}
LIBRARY DESTINATION ${YAP_INSTALL_LIBDIR}
2016-01-20 22:25:25 +00:00
)
2014-12-14 12:05:43 +00:00