FLTK logo

[branch-1.3] 997ffe5 - Fix CMake install procedure (#212)

FLTK matrix user chat room
(using Element browser app)   FLTK gitter user chat room   GitHub FLTK Project   FLTK News RSS Feed  
  FLTK Apps      FLTK Library      Forums      Links     Login 
 All Forums  |  Back to fltk.commit  ]
 
Previous Message ]Next Message ]

[branch-1.3] 997ffe5 - Fix CMake install procedure (#212) "Albrecht Schlosser" Apr 11, 2021  
 
commit 997ffe5a22eef2ee2cdef940aeeada7d388a7f14
Author:     Albrecht Schlosser <albrechts.fltk@online.de>
AuthorDate: Sun Apr 11 21:56:28 2021 +0200
Commit:     Albrecht Schlosser <albrechts.fltk@online.de>
CommitDate: Sun Apr 11 21:58:09 2021 +0200

    Fix CMake install procedure (#212)
    
    Only install header files to the FL/ include directory.

 CMake/install.cmake | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git CMake/install.cmake CMake/install.cmake
index c01f19d..bbba125 100644
--- CMake/install.cmake
+++ CMake/install.cmake
@@ -2,7 +2,7 @@
 # Main CMakeLists.txt to build the FLTK project using CMake (www.cmake.org)
 # Written by Michael Surette
 #
-# Copyright 1998-2020 by Bill Spitzak and others.
+# Copyright 1998-2021 by Bill Spitzak and others.
 #
 # This library is free software. Distribution and use rights are outlined in
 # the file "COPYING" which should have been included with this file.  If this
@@ -32,11 +32,16 @@ add_custom_target (uninstall
 install (DIRECTORY
   ${CMAKE_CURRENT_SOURCE_DIR}/FL
   DESTINATION ${FLTK_INCLUDEDIR} USE_SOURCE_PERMISSIONS
+  FILES_MATCHING
+    PATTERN "*.[hH]"
+    PATTERN "abi-version.h" EXCLUDE
 )
 
 install (DIRECTORY
   ${CMAKE_CURRENT_BINARY_DIR}/FL
   DESTINATION ${FLTK_INCLUDEDIR} USE_SOURCE_PERMISSIONS
+  FILES_MATCHING
+    PATTERN "*.[hH]"
 )
 
 if (OPTION_CREATE_LINKS)
Direct Link to Message ]
 
     
Previous Message ]Next Message ]
 
 

Comments are owned by the poster. All other content is copyright 1998-2024 by Bill Spitzak and others. This project is hosted by The FLTK Team. Please report site problems to 'erco@seriss.com'.