Compare commits
	
		
			1 Commits
		
	
	
		
			autogain
			...
			dependency
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|  | 3e939c4592 | 
| @@ -45,6 +45,7 @@ set(discord-screenaudio_SRC | ||||
|   src/log.cpp | ||||
|   src/userscript.cpp | ||||
|   src/centralwidget.cpp | ||||
|   src/dependencycheck.cpp | ||||
|   resources.qrc | ||||
| ) | ||||
|  | ||||
|   | ||||
							
								
								
									
										10
									
								
								src/dependencycheck.cpp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								src/dependencycheck.cpp
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,10 @@ | ||||
| #include "dependencycheck.h" | ||||
| #include "pipewire-0.3/pipewire/version.h" | ||||
|  | ||||
| #include <QMessageBox> | ||||
|  | ||||
| void checkDependencies() { | ||||
|   QString versionPipewire(pw_get_library_version()); | ||||
|   QMessageBox::information(nullptr, "Dependency Check", | ||||
|                            QString("Pipewire: v%1").arg(versionPipewire)); | ||||
| } | ||||
							
								
								
									
										3
									
								
								src/dependencycheck.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								src/dependencycheck.h
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,3 @@ | ||||
| #pragma once | ||||
|  | ||||
| void checkDependencies(); | ||||
| @@ -1,3 +1,4 @@ | ||||
| #include "dependencycheck.h" | ||||
| #include "mainwindow.h" | ||||
| #include "virtmic.h" | ||||
|  | ||||
| @@ -49,6 +50,8 @@ int main(int argc, char *argv[]) { | ||||
|             "--remote-debugging-port=9222 " + | ||||
|                 qgetenv("QTWEBENGINE_CHROMIUM_FLAGS")); | ||||
|  | ||||
|   checkDependencies(); | ||||
|  | ||||
|   MainWindow w(parser.isSet(notifySendOption)); | ||||
|   w.show(); | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user