diff options
| author | 2019-07-29 22:31:29 +0200 | |
|---|---|---|
| committer | 2019-07-29 22:31:29 +0200 | |
| commit | 0d4b68221bda594cc695d216dfa21306ddb69c85 (patch) | |
| tree | 766b8ab720fa5da11730d2fc2388f51b9d14de49 /CMakeLists.txt | |
| parent | 4b939631b48a8ad87f7c327a6197373bc64ea3a6 (diff) | |
| download | OneRoll-0d4b68221bda594cc695d216dfa21306ddb69c85.tar.gz OneRoll-0d4b68221bda594cc695d216dfa21306ddb69c85.zip | |
Update DiceParser Grammar
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 876af55..f213bc4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -62,7 +62,9 @@ IF(STATIC_BUILD) ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}) endif() -add_library(diceparser_shared SHARED ${dice_sources} ) +set(documentation README.md HelpMe.md) + +add_library(diceparser_shared SHARED ${dice_sources} ${documentation}) target_include_directories(diceparser_shared PRIVATE include) @@ -93,3 +95,5 @@ configure_file(diceparser.pc.in diceparser.pc @ONLY) install(FILES ${CMAKE_BINARY_DIR}/diceparser.pc DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/pkgconfig) + + |