Removed GNUInstallDirs not supported in CMake 2.8

This commit is contained in:
Oleg Artenii 2017-11-22 14:49:04 +02:00 committed by GitHub
parent 8fc13f5bbe
commit 4ae2e284fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,8 +2,7 @@ cmake_minimum_required (VERSION 2.8.0)
project (utf8cpp)
include_directories ("${PROJECT_SOURCE_DIR}/source")
include(GNUInstallDirs)
install(DIRECTORY ${PROJECT_SOURCE_DIR}/source/ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/utfcpp)
install(DIRECTORY ${PROJECT_SOURCE_DIR}/source/ DESTINATION include/utfcpp)
add_executable(smoke ${PROJECT_SOURCE_DIR}/test_drivers/smoke_test/test.cpp)
add_executable(negative ${PROJECT_SOURCE_DIR}/test_drivers/negative/negative.cpp)