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

Version Path
ufos-1.0.94 ./other/experimental_code/pystring/CMakeLists.txt
aliens-1.0.94 ./other/experimental_code/pystring/CMakeLists.txt
freespeech-1.0.94 ./other/experimental_code/pystring/CMakeLists.txt
elonmusk-1.0.94 ./other/experimental_code/pystring/CMakeLists.txt
politics-1.0.94 ./other/experimental_code/pystring/CMakeLists.txt
democracy-1.0.94 ./other/experimental_code/pystring/CMakeLists.txt
democracy-1.0.93 ./other/experimental_code/pystring/CMakeLists.txt
ufos-1.0.91 ./other/experimental_code/pystring/CMakeLists.txt
aliens-1.0.91 ./other/experimental_code/pystring/CMakeLists.txt
freespeech-1.0.91 ./other/experimental_code/pystring/CMakeLists.txt
elonmusk-1.0.91 ./other/experimental_code/pystring/CMakeLists.txt
politics-1.0.91 ./other/experimental_code/pystring/CMakeLists.txt
politics-1.0.89 ./other/experimental_code/pystring/CMakeLists.txt
ufos-1.0.87 ./other/experimental_code/pystring/CMakeLists.txt
aliens-1.0.87 ./other/experimental_code/pystring/CMakeLists.txt
freespeech-1.0.87 ./other/experimental_code/pystring/CMakeLists.txt
elonmusk-1.0.87 ./other/experimental_code/pystring/CMakeLists.txt
politics-1.0.87 ./other/experimental_code/pystring/CMakeLists.txt
ufos-1.0.88 ./other/experimental_code/pystring/CMakeLists.txt
aliens-1.0.88 ./other/experimental_code/pystring/CMakeLists.txt