1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-23 02:35:57 +01:00

Fix build system issues.

This commit is contained in:
Matias Fontanini
2014-08-23 13:05:51 -03:00
parent d0d4379b1b
commit 3a02bd0a3f
5 changed files with 96 additions and 138 deletions

View File

@@ -1,2 +1,7 @@
FILE(GLOB INCLUDE_FILES "*.h")
INSTALL(FILES ${INCLUDE_FILES} DESTINATION include/tins)
INSTALL(
FILES ${INCLUDE_FILES}
DESTINATION include/tins
COMPONENT Headers
)
ADD_SUBDIRECTORY(dot11)

View File

@@ -0,0 +1,6 @@
FILE(GLOB INCLUDE_FILES "*.h")
INSTALL(
FILES ${INCLUDE_FILES}
DESTINATION include/tins/dot11
COMPONENT Headers
)