Compare commits

...

3 Commits

Author SHA1 Message Date
065daa16fc Merge pull request 'fix/cmake-multiple-main' (#18) from kay
Reviewed-on: #18
2025-04-19 11:26:41 -04:00
Kayleigh
d727e62c59 2025-04-18 14:50:59 +02:00
Kayleigh
54efa362f1 Change made to fix the following error:
```
/usr/bin/ld: CMakeFiles/pacat.dir/pacat_advanced.cpp.o: in function `main':
pacat_advanced.cpp:(.text+0x162b): multiple definition of `main'; CMakeFiles/pacat.dir/pacat_simple.cpp.o:pacat_simple.cpp:(.text+0x0): first defined here
collect2: error: ld returned 1 exit status
make[2]: *** [CMakeFiles/pacat.dir/build.make:133: pacat] Error 1
make[1]: *** [CMakeFiles/Makefile2:272: CMakeFiles/pacat.dir/all] Error 2
make: *** [Makefile:136: all] Error 2
```
2025-04-18 14:47:33 +02:00
2 changed files with 1 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/build

View File

@@ -63,7 +63,6 @@ endif()
target_link_libraries(ReMixer-Test PUBLIC ReMixer)
add_executable(pacat pacat_simple.cpp
pacat_advanced.cpp
src/windows/ReMixer.cpp
include/ReMixer/PulseSubsystem.h)
target_link_libraries(pacat pulse-simple pulse)