Sha256: c732ab3e3ee8d318756269d0e90c5d65286b0de38e5dcd387a60f9b3db4541d6
Contents?: true
Size: 400 Bytes
Versions: 50
Compression:
Stored size: 400 Bytes
Contents
cmake_minimum_required(VERSION 3.2) project(pystring CXX) set(BUILD_SHARED_LIBS YES) add_library(pystring pystring.cpp pystring.h ) add_executable (pystring_test test.cpp) TARGET_LINK_LIBRARIES (pystring_test pystring) enable_testing() add_test(NAME PyStringTest COMMAND pystring_test) include(GNUInstallDirs) install(TARGETS pystring LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} )
Version data entries
50 entries across 49 versions & 6 rubygems