diff options
| author | 2019-02-14 10:40:59 +0100 | |
|---|---|---|
| committer | 2019-03-23 17:55:15 +0100 | |
| commit | c46ad9d1ceb345f09590ad8ea9a98b33a2a0c31b (patch) | |
| tree | 53a8fa2d88ef09397171f360e0fc04487e547529 /cli/CMakeLists.txt | |
| parent | 607b8284672c75f134616a826e3475be4cf8e277 (diff) | |
| download | OneRoll-c46ad9d1ceb345f09590ad8ea9a98b33a2a0c31b.tar.gz OneRoll-c46ad9d1ceb345f09590ad8ea9a98b33a2a0c31b.zip | |
first draft of occurence counter
Diffstat (limited to 'cli/CMakeLists.txt')
| -rw-r--r-- | cli/CMakeLists.txt | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/cli/CMakeLists.txt b/cli/CMakeLists.txt index 3c14576..f3dd61d 100644 --- a/cli/CMakeLists.txt +++ b/cli/CMakeLists.txt @@ -52,12 +52,12 @@ ENDIF(UPDATE_TRANSLATIONS) if(Qt5Core_FOUND) - IF(UPDATE_TRANSLATIONS) + #IF(UPDATE_TRANSLATIONS) MESSAGE(status "find" ${dice_TS} ${translate_SRCS} ) - QT5_CREATE_TRANSLATION(dice_QM ${translate_SRCS} ${dice_TS}) - ELSE() - QT5_ADD_TRANSLATION(dice_QM ${dice_TS}) - ENDIF() + #QT5_CREATE_TRANSLATION(dice_QM ${translate_SRCS} ${dice_TS}) + #ELSE() + #QT5_ADD_TRANSLATION(dice_QM ${dice_TS}) + #ENDIF() QT5_ADD_RESOURCES(dice_RESOURCES_RCC ${dice_RESOURCES}) @@ -93,6 +93,7 @@ SET( dice_sources ../node/listsetrollnode.cpp ../node/numbernode.cpp ../node/parenthesesnode.cpp + ../node/forloopnode.cpp ../node/paintnode.cpp ../node/rerolldicenode.cpp ../node/scalaroperatornode.cpp @@ -104,13 +105,16 @@ SET( dice_sources ../node/splitnode.cpp ../node/groupnode.cpp ../node/bind.cpp + ../node/occurencecountnode.cpp main.cpp displaytoolbox.cpp ../highlightdice.cpp ../node/variablenode.cpp ) -add_executable( dice ${dice_sources} ${dice_QM} ) +set(documentation_files ../HelpMe.md ../README.md) + +add_executable( dice ${dice_sources} ${dice_QM} ${documentation_files}) target_link_libraries(dice ${Qt5Core_LIBRARIES} ${Qt5Gui_LIBRARIES} ${Qt5Svg_LIBRARIES}) INSTALL_TARGETS(/bin dice) |