This commit is contained in:
Jack Andersen
2019-06-09 16:51:00 -10:00
3 changed files with 46 additions and 2 deletions

View File

@@ -19,3 +19,11 @@ add_library(nod
if(NOT MSVC AND NOT NX)
set_source_files_properties(aes.cpp PROPERTIES COMPILE_FLAGS -maes)
endif()
# Associate target with export
install(
TARGETS nod
EXPORT nodTargets
ARCHIVE DESTINATION "lib"
INCLUDES DESTINATION include # This sets the INTERFACE_INCLUDE_DIRECTORIES property of the target.
)