install only public headers. 67/91867/1
authorHermet Park <hermet@hermet.pe.kr>
Wed, 12 Oct 2016 03:28:39 +0000 (12:28 +0900)
committerHermet Park <hermet@hermet.pe.kr>
Wed, 12 Oct 2016 03:28:39 +0000 (12:28 +0900)
Some private headers shouldn't be installed.
Those headers have a prefix "_ui" or "_Ui".

Change-Id: I9e6c21c9f7094ca382ac4ffad7c515d1618f3f3b

src/include/CMakeLists.txt

index 73ea1ca80305daecaea7f7f9db2cc3fd5fd2f2de..5401767528616c0d90dae1af8afd5c9c0daa8cd5 100644 (file)
@@ -1,10 +1,6 @@
 INSTALL(
         DIRECTORY ./ DESTINATION include/${LIBNAME}
         FILES_MATCHING
-        PATTERN "interface/*.h"
-        PATTERN "efl/*.h"
-        PATTERN "efl/mobile/c/*.h"
-        PATTERN "efl/mobile/*.h"
-        PATTERN "*.h"
+        PATTERN "ui*.h"
+        PATTERN "Ui*.h"
         )
-