File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 5858 README.md
5959 RELEASE_NOTES
6060 3rdPartyLicenses/LICENSE_1_0.txt
61+ Examples/**
6162
6263 - if : always() && contains(matrix.os,'macos')
6364 name : Mac Cats
@@ -186,6 +187,7 @@ jobs:
186187 README.md
187188 RELEASE_NOTES
188189 3rdPartyLicenses/LICENSE_1_0.txt
190+ Examples/**
189191
190192 - if : always()
191193 name : Linux Cats
Original file line number Diff line number Diff line change @@ -10,19 +10,20 @@ if(NOT WIN32)
1010endif ()
1111
1212project (MiniPlex LANGUAGES CXX)
13- add_definitions (-DMP_VERSION="1.3.0" )
13+ add_definitions (-DMP_VERSION="1.3.0-RC2 " )
1414
1515file (GLOB ${PROJECT_NAME} _SRC src/*.cpp src/*.h)
1616
1717set (CMAKE_CXX_STANDARD 20)
1818set (CMAKE_CXX_STANDARD_REQUIRED ON )
1919set (CMAKE_CXX_EXTENSIONS OFF ) #Eg. -std=c++20 instead of -std=gnu++20
2020
21- install (FILES "LICENSE.txt " DESTINATION "." )
22- install (FILES "NOTICE.txt " DESTINATION "." )
21+ install (FILES "LICENSE" DESTINATION "." )
22+ install (FILES "NOTICE" DESTINATION "." )
2323install (FILES "README.md" DESTINATION "." )
2424install (FILES "RELEASE_NOTES" DESTINATION "." )
2525install (DIRECTORY "./3rdPartyLicenses" DESTINATION "." )
26+ install (DIRECTORY "./Examples" DESTINATION "." )
2627
2728# Platform configuration
2829if (WIN32 )
You can’t perform that action at this time.
0 commit comments