diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-29 09:17:44 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-29 09:17:44 (GMT) |
commit | 579bb87f55df8a82bc699e9ac0a8952f963065ac (patch) | |
tree | 78f263e71a5f62e51df37fb6c1ab18299fb2e1b7 /CMakeLists.txt | |
parent | 4fc6d67feb4f178dec68b4fbba0f21944cbb4150 (diff) |
Added install support.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f9f910c..30325be 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,6 +33,8 @@ check_include_file(inttypes.h HAVE_INTTYPES_H) add_subdirectory(src) +install(FILES include/tng_io.h DESTINATION include/) + file(COPY example_files DESTINATION .) #-- Add an Option to toggle the generation of the API documentation @@ -53,3 +55,4 @@ if(TNG_BUILD_DOCUMENTATION) # IF you do NOT want the documentation to be generated EVERY time you build the project # then leave out the 'ALL' keyword from the above command. endif() + |