generated from macoy/gamelib-project-template
7 changed files with 34 additions and 10 deletions
@ -1,16 +1,16 @@ |
|||
Copyright (c) 2021 Macoy Madson |
|||
|
|||
This file is part of GameLib Project. |
|||
This file is part of Keyboards. |
|||
|
|||
GameLib Project is free software: you can redistribute it and/or modify |
|||
Keyboards is free software: you can redistribute it and/or modify |
|||
it under the terms of the GNU General Public License as published by |
|||
the Free Software Foundation, either version 3 of the License, or |
|||
(at your option) any later version. |
|||
|
|||
GameLib Project is distributed in the hope that it will be useful, |
|||
Keyboards is distributed in the hope that it will be useful, |
|||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
GNU General Public License for more details. |
|||
|
|||
You should have received a copy of the GNU General Public License |
|||
along with GameLib Project. If not, see <https://www.gnu.org/licenses/>. |
|||
along with Keyboards. If not, see <https://www.gnu.org/licenses/>. |
@ -1,3 +1,3 @@ |
|||
#+title: GameLib Project |
|||
#+title: Keyboards |
|||
|
|||
This is a template repository for gamelib-based projects. |
|||
This is my dumping ground for various physical keyboard firmware and designs. |
|||
|
@ -1,7 +1,13 @@ |
|||
;; Arduino build expects things to have specific names and extensions. We'll create a build label |
|||
;; just to make our build directory match, which appears to be necessary. |
|||
(add-build-config-label "Keypad") |
|||
|
|||
(set-cakelisp-option cakelisp-src-dir "Dependencies/cakelisp/src") |
|||
(add-cakelisp-search-directory "Dependencies/gamelib/src") |
|||
(add-cakelisp-search-directory "Dependencies/cakelisp/runtime") |
|||
(add-cakelisp-search-directory "src") |
|||
|
|||
(import "CHelpers.cake") |
|||
|
|||
(defun main (&return int) |
|||
(return 0)) |
Loading…
Reference in new issue