Skip to content

Commit

Permalink
Hello world :)
Browse files Browse the repository at this point in the history
  • Loading branch information
Harmmmm committed Aug 7, 2020
1 parent 2fb061f commit 9a6547c
Show file tree
Hide file tree
Showing 13 changed files with 1,629 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
*.sln
*.vcxproj
*.vcxproj.filters
.vs/
build/
Debug/

ParrotLoader/Release/

Release/

TeknoParrot\.sdf

TeknoParrot\.v12\.suo

TeknoParrot/TeknoParrot\.vcxproj\.user

ParrotLoader/ParrotLoader\.vcxproj\.user

*.user
*.aps
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions OpenSndGaelco/premake5.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
project "OpenSndGaelco"
targetname "OpenSndGaelco"
language "C++"
kind "SharedLib"
removeplatforms { "x64" }

files
{
"src/**.cpp", "src/**.h",
"deps/cpp/**.cpp", "deps/inc/**.h",
"src/OpenSndGaelco.aps", "src/OpenSndGaelco.rc"
}

includedirs { "src" }

postbuildcommands {
"if not exist $(TargetDir)output mkdir $(TargetDir)output",
"{COPY} $(TargetDir)OpenSndGaelco.dll $(TargetDir)output/"
}
Loading

0 comments on commit 9a6547c

Please sign in to comment.