nukashimika
2 years ago
commit
e71cb706c9
4 changed files with 44 additions and 0 deletions
@ -0,0 +1,7 @@
|
||||
project('multiplex', 'cpp') |
||||
|
||||
qt = [dependency('qt5')] |
||||
src = [ |
||||
'src/main.cpp' |
||||
] |
||||
executable('multiplex', sources: src, dependencies: qt) |
@ -0,0 +1,12 @@
|
||||
{pkgs ? import <nixpkgs> {} }: |
||||
|
||||
pkgs.mkShell { |
||||
nativeBuildInputs = with pkgs; [ |
||||
glfw |
||||
glew |
||||
gcc |
||||
zsh |
||||
exa |
||||
pkg-config |
||||
]; |
||||
} |
@ -0,0 +1,11 @@
|
||||
|
||||
|
||||
class App |
||||
{ |
||||
public: |
||||
void run() |
||||
{ |
||||
|
||||
} |
||||
private: |
||||
}; |
Reference in new issue