diff options
author | Jo-Philipp Wich <jo@mein.io> | 2021-07-10 12:06:45 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2021-07-11 15:49:14 +0200 |
commit | ff6168a8901adcf84fbeda86f3f25fae7dff609b (patch) | |
tree | 1073aeb92668d223bd56d4e10c1a2628d5c25bbc /CMakeLists.txt | |
parent | 7e6ce0f718202856ae349970d199bbe95811a1b2 (diff) |
build: install header files
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
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 1f626d1..5a93b80 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -130,3 +130,6 @@ ENDIF() INSTALL(TARGETS ucode RUNTIME DESTINATION bin) INSTALL(TARGETS libucode LIBRARY DESTINATION lib) INSTALL(TARGETS ${LIBRARIES} LIBRARY DESTINATION lib/ucode) + +SET(UCODE_HEADERS chunk.h compiler.h lexer.h lib.h module.h source.h types.h util.h value.h vm.h) +INSTALL(FILES ${UCODE_HEADERS} DESTINATION include/ucode) |