diff options
author | crupest <crupest@outlook.com> | 2022-05-15 14:15:31 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-05-15 14:15:31 +0800 |
commit | 34a64e6ffefaab007578932ddbab931a25f1d56e (patch) | |
tree | 541fdb8279e829a129df62288d09916bf23c9200 /demos/SvgPath/CMakeLists.txt | |
parent | 8ad2966933957ac5d6ff8dcd5e732736fd5e4dc6 (diff) | |
download | cru-34a64e6ffefaab007578932ddbab931a25f1d56e.tar.gz cru-34a64e6ffefaab007578932ddbab931a25f1d56e.tar.bz2 cru-34a64e6ffefaab007578932ddbab931a25f1d56e.zip |
...
Diffstat (limited to 'demos/SvgPath/CMakeLists.txt')
-rw-r--r-- | demos/SvgPath/CMakeLists.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/demos/SvgPath/CMakeLists.txt b/demos/SvgPath/CMakeLists.txt new file mode 100644 index 00000000..34120111 --- /dev/null +++ b/demos/SvgPath/CMakeLists.txt @@ -0,0 +1,12 @@ +add_executable(CruDemoSvgPath main.cpp) + +if(APPLE) + set_target_properties(CruDemoSvgPath PROPERTIES + MACOSX_BUNDLE TRUE + MACOSX_BUNDLE_BUNDLE_NAME cru-demo-svg-path + MACOSX_BUNDLE_GUI_IDENTIFIER life.crupest.demo-svg-path + ) +endif() + +target_link_libraries(CruDemoSvgPath PRIVATE CruDemoBase) + |