Skip to content

Commit d1bcc22

Browse files
authored
Merge pull request #11 from pedrolcl/enable-fm-synth-in-cmake
Enable FM Synth by default in CMake
2 parents da067d1 + 9bd2ff9 commit d1bcc22

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#[=========================================================================[
2-
Copyright (c) 2022-2025 Pedro López-Cabanillas
2+
Copyright (c) 2022-2026 Pedro López-Cabanillas
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.
@@ -18,7 +18,7 @@ cmake_minimum_required(VERSION 3.21)
1818

1919
project( sonivox
2020
LANGUAGES C CXX
21-
VERSION 4.0.0.0
21+
VERSION 4.0.1.0
2222
)
2323

2424
# GoogleTest requires at least C++14
@@ -37,7 +37,7 @@ option(NEW_HOST_WRAPPER "Use the new host wrapper" TRUE)
3737
option(SF2_SUPPORT "Enable SF2 support and float DCF" TRUE)
3838
option(ZLIB_SUPPORT "Enable XMF ZLIB Unpacker support" TRUE)
3939
option(EAS_WT_SYNTH "Enable WaveTable Synth" TRUE)
40-
option(EAS_FM_SYNTH "Enable FM Synth" FALSE)
40+
option(EAS_FM_SYNTH "Enable FM Synth" TRUE)
4141
option(INSTALL_DEPENDENCIES "Deploy dependency libraries" FALSE)
4242

4343
if (NOT (EAS_WT_SYNTH OR EAS_FM_SYNTH OR EAS_HYBRID_SYNTH))
@@ -94,7 +94,7 @@ endif()
9494

9595
include(GNUInstallDirs)
9696

97-
set(PROJECT_RELEASE_DATE "December 30, 2025")
97+
# set(PROJECT_RELEASE_DATE "December 30, 2025")
9898

9999
if (BUILD_TESTING)
100100
find_package(GTest CONFIG)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ There are two environment variables that you may set before running the tests (m
156156

157157
## License
158158

159-
Copyright (c) 2022-2025 Pedro López-Cabanillas and others.
159+
Copyright (c) 2022-2026 Pedro López-Cabanillas and others.
160160

161161
Copyright (c) 2008-2024, The Android Open Source Project.
162162

example/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#[=========================================================================[
2-
Copyright (c) 2022-2025 Pedro López-Cabanillas
2+
Copyright (c) 2022-2026 Pedro López-Cabanillas
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

example/sonivoxrender.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,4 @@ See Tickets at GitHub <https://github.com/EnbeddedSynth/sonivox/issues/>
123123

124124
Licensed under the Apache License, Version 2.0
125125

126-
Copyright (c) 2022-2025 Pedro López-Cabanillas and contributors
126+
Copyright (c) 2022-2026 Pedro López-Cabanillas and contributors

example/sonivoxrender.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022-2025 Pedro López-Cabanillas
2+
* Copyright (c) 2022-2026 Pedro López-Cabanillas
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)