Skip to content

Commit 1fed715

Browse files
committed
Include example switch mode bytecode in installer, bump version
1 parent 05ff3ff commit 1fed715

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/MiniPlex.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ jobs:
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

CMakeLists.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,20 @@ if(NOT WIN32)
1010
endif()
1111

1212
project(MiniPlex LANGUAGES CXX)
13-
add_definitions(-DMP_VERSION="1.3.0")
13+
add_definitions(-DMP_VERSION="1.3.0-RC2")
1414

1515
file(GLOB ${PROJECT_NAME}_SRC src/*.cpp src/*.h)
1616

1717
set(CMAKE_CXX_STANDARD 20)
1818
set(CMAKE_CXX_STANDARD_REQUIRED ON)
1919
set(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 ".")
2323
install(FILES "README.md" DESTINATION ".")
2424
install(FILES "RELEASE_NOTES" DESTINATION ".")
2525
install(DIRECTORY "./3rdPartyLicenses" DESTINATION ".")
26+
install(DIRECTORY "./Examples" DESTINATION ".")
2627

2728
# Platform configuration
2829
if(WIN32)

0 commit comments

Comments
 (0)