Skip to content

Commit c096e4b

Browse files
committed
comments
1 parent af8f5bf commit c096e4b

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

examples/examples-desktop/generator/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ endif()
3535
# build sketch as executable
3636
add_executable (generator generator.cpp)
3737

38-
# use main() from arduino_emulator
38+
# set preprocessor defines
3939
target_compile_definitions(arduino_emulator PUBLIC )
4040

4141
# OS/X might need this setting for core audio

examples/examples-desktop/mp3/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ endif()
3535
# build sketch as executable
3636
add_executable (mp3 mp3.cpp)
3737

38-
# use main() from arduino_emulator
38+
# set preprocessor defines
3939
target_compile_definitions(arduino_emulator PUBLIC -DDEFINE_MAIN)
4040
target_compile_definitions(mp3 PUBLIC -DEXIT_ON_STOP)
4141

tests/aac-fdk-encode/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ endif()
2121

2222
# build sketch as executable
2323
add_executable (aac-fdk-encode aac-fdk-encode.cpp ../main.cpp)
24-
# use main() from arduino_emulator
24+
# set preprocessor defines
2525
target_compile_definitions(aac-fdk-encode PUBLIC -DARDUINO -DEXIT_ON_STOP -DUSE_FDK -DIS_DESKTOP)
2626

2727
# specify libraries

tests/aac-fdk/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ endif()
2121
# build sketch as executable
2222
add_executable (aac-fdk aac-fdk.cpp ../main.cpp)
2323

24-
# use main() from arduino_emulator
24+
# set preprocessor defines
2525
target_compile_definitions(aac-fdk PUBLIC -DARDUINO -DEXIT_ON_STOP -DUSE_FDK -DUSE_PORTAUDIO -DIS_DESKTOP)
2626

2727
# OS/X might need this setting for core audio

tests/aac-helix/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ endif()
2121
# build sketch as executable
2222
add_executable (aac-helix aac-helix.cpp ../main.cpp)
2323

24-
# use main() from arduino_emulator
24+
# set preprocessor defines
2525
target_compile_definitions(aac-helix PUBLIC -DARDUINO -DEXIT_ON_STOP -DUSE_HELIX -DUSE_PORTAUDIO -DIS_DESKTOP)
2626

2727
# OS/X might need this setting for core audio

tests/effects/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ endif()
1111

1212
# build sketch as executable
1313
add_executable (effects effects.cpp ../main.cpp)
14-
# use main() from arduino_emulator
14+
# set preprocessor defines
1515
target_compile_definitions(effects PUBLIC -DARDUINO -DEXIT_ON_STOP -DIS_DESKTOP)
1616

1717
# specify libraries

tests/filter/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ endif()
1313
# build sketch as executable
1414
add_executable (filter filter.cpp ../main.cpp)
1515

16-
# use main() from arduino_emulator
16+
# set preprocessor defines
1717
target_compile_definitions(filter PUBLIC -DEXIT_ON_STOP -DIS_DESKTOP)
1818

1919
# specify libraries

tests/generator/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ endif()
1313
# build sketch as executable
1414
add_executable (generator generator.cpp ../main.cpp)
1515

16-
# use main() from arduino_emulator
16+
# set preprocessor defines
1717
target_compile_definitions(generator PUBLIC -DUSE_PORTAUDIO -DEXIT_ON_STOP -DIS_DESKTOP)
1818

1919
# specify libraries

tests/mp3-helix/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ endif()
2121

2222
# build sketch as executable
2323
add_executable (mp3-helix mp3-helix.cpp ../main.cpp)
24-
# use main() from arduino_emulator
24+
# set preprocessor defines
2525
target_compile_definitions(mp3-helix PUBLIC -DARDUINO -DEXIT_ON_STOP -DUSE_HELIX -DUSE_PORTAUDIO -DIS_DESKTOP)
2626

2727
# OS/X might need this setting for core audio

tests/mp3-lame/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ endif()
2121

2222
# build sketch as executable
2323
add_executable (mp3-lame mp3-lame.cpp ../main.cpp)
24-
# use main() from arduino_emulator
24+
# set preprocessor defines
2525
target_compile_definitions(mp3-lame PUBLIC -DARDUINO -DEXIT_ON_STOP -DUSE_LAME -DUSE_PORTAUDIO -DIS_DESKTOP)
2626

2727
# specify libraries

0 commit comments

Comments
 (0)