diff --git a/CMakeLists.txt b/CMakeLists.txt index 6b616f5b5c159467ac254a56b65ca3546d58eb43..b8ff999508b2c89cf0592fb2733b6bd87686df82 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,11 +21,3 @@ add_library(xpdevplus STATIC ${SOURCE}) target_link_libraries(xpdevplus ciolib comio encode hash uifc xpdev) configure_file(xpdevplus.h.in xpdevplus.h) target_include_directories(xpdevplus PRIVATE ${XPDevPlus_BINARY_DIR}) -install( - FILES ${CMAKE_CURRENT_BINARY_DIR}/xpdevplus.h - TYPE INCLUDE -) -install( - TARGETS xpdevplus - LIBRARY -) diff --git a/ciolib/CMakeLists.txt b/ciolib/CMakeLists.txt index 2b553e3e6a4f62b2dcee3bd6fb10758f4c527eaa..cfd1cc517bc3256c424d72f927dc4b44b7630775 100644 --- a/ciolib/CMakeLists.txt +++ b/ciolib/CMakeLists.txt @@ -113,8 +113,3 @@ if(HAVE_VASPRINTF) target_compile_definitions(ciolib PRIVATE HAVE_VASPRINTF) endif() target_link_libraries(ciolib hash encode xpdev) - -install( - FILES ${HEADER} - TYPE INCLUDE -) diff --git a/comio/CMakeLists.txt b/comio/CMakeLists.txt index ef8d5f703f87a4543a43eafc1ad24d4aa62d6e93..5212bed571b4d1d9b4ab6b898f551c608e7090cb 100644 --- a/comio/CMakeLists.txt +++ b/comio/CMakeLists.txt @@ -23,7 +23,3 @@ endif() target_include_directories(comio PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) target_link_libraries(comio xpdev) -install( - FILES ${HEADER} - TYPE INCLUDE -) diff --git a/encode/CMakeLists.txt b/encode/CMakeLists.txt index b7c7dd78968466364d580e02403c6a1c1a8ec3a7..2e2be23da93a1f2c78be5f9b9d7147116f44e3a6 100644 --- a/encode/CMakeLists.txt +++ b/encode/CMakeLists.txt @@ -25,7 +25,3 @@ add_library(encode OBJECT ${SOURCE}) target_compile_features(encode PUBLIC c_std_99) target_include_directories(encode PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) target_link_libraries(encode xpdev) -install( - FILES ${HEADER} - TYPE INCLUDE -) diff --git a/hash/CMakeLists.txt b/hash/CMakeLists.txt index b2c859997f786fb480717227528c9c73140cd77f..8303fff3fb04ad249a531450efb9e3cfb2279c94 100644 --- a/hash/CMakeLists.txt +++ b/hash/CMakeLists.txt @@ -20,7 +20,3 @@ set(HEADER add_library(hash OBJECT ${SOURCE}) target_include_directories(hash PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) target_link_libraries(hash xpdev) -install( - FILES ${HEADER} - TYPE INCLUDE -) diff --git a/uifc/CMakeLists.txt b/uifc/CMakeLists.txt index 80bda20d95d0f7a76d980d2e10ec19e0eb0901fa..a6ddccd7fd77e701aa3811e1a2162d7f59f445a0 100644 --- a/uifc/CMakeLists.txt +++ b/uifc/CMakeLists.txt @@ -19,7 +19,3 @@ add_library(uifc OBJECT ${SOURCE}) target_include_directories(uifc PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) target_link_libraries(uifc ciolib xpdev) -install( - FILES ${HEADER} - TYPE INCLUDE -) diff --git a/xpdev/CMakeLists.txt b/xpdev/CMakeLists.txt index 0a692e19f14f264d297337f61d48f572af869de0..fe1855e26ac15541e8dbda15e6f53abd3f02383a 100644 --- a/xpdev/CMakeLists.txt +++ b/xpdev/CMakeLists.txt @@ -187,8 +187,3 @@ CHECK_INCLUDE_FILES(alsa/asoundlib.h USE_ALSA_SOUND) if(USE_ALSA_SOUND) target_compile_definitions(xpdev PRIVATE USE_ALSA_SOUND) endif() - -install( - FILES ${HEADER} - TYPE INCLUDE -)