dev
List of commits:
Subject Hash Author Date (UTC)
fix build ee5b38eb4ce21c50ce608caa7c0c965178497fe6 mucbuc 2020-08-26 00:16:17
buildscript e241fafa91572ac800c75df02c9fc97e544879b3 mucbuc 2020-08-25 18:52:33
cleanup 0ff227f7a581c7077c196a0317f2cde008a85bc6 mucbuc 2020-08-25 04:52:11
template bd8f1832040beebe315de5dab5b3a6321c3f234c mucbuc 2020-08-25 04:23:05
move to build dir b4eb6df6fddc4062db3a217b544de4ce7a6ae91a mucbuc 2020-08-25 04:02:16
cleanup e72c7eda21f4e75403cecc6b85d667ebb28b4441 mucbuc 2020-08-25 03:36:47
compile function 26b9d9676e0d689f5ef111e4f61ecf52ed47048b mucbuc 2020-08-25 00:09:15
move res in tblueprint 7dc2bb8462a6db28751fc572f796bf57e1710b89 mucbuc 2020-08-24 04:11:04
remove spaces 1e768ad122da007e4e5402303ff945620254d4b5 mucbuc 2020-08-23 21:15:40
remove spaces 18859697c3895df15e2e8d022209f892350025c5 mucbuc 2020-08-23 21:14:58
remove spaces f97eb53fdc3c1801b9e863b4e6b1fba5b11d8040 mucbuc 2020-08-23 21:14:06
write template cfb6e2b732d01190dd8a786742bb6bf00292225e mucbuc 2020-08-23 21:05:51
remove space 12ab455e7786c20019679edba5107a7f579dc126 mucbuc 2020-08-23 20:06:40
working on example 82a1df4d3f6c5e5405eae35f277572fc51b9a947 mucbuc 2020-08-23 20:02:57
remove spaces 3085884efad6701037ead5fafc816e1e061f4f3e mucbuc 2020-08-23 19:47:11
template f8b6264b7697735f0aaf9b5b7de16390c8388fb2 mucbuc 2020-08-23 17:05:05
wtf 570de7c742cf9b3ec5518499fcbf87cd32902ebe mucbuc 2020-08-23 00:48:47
wtf dfdd90a77db18e6c9778d88d7a167e5999ac81b7 mucbuc 2020-08-23 00:47:50
wtf 8d1b6e0c8ec4d2363e1984941718ebd30bdecfcf mucbuc 2020-08-23 00:47:24
wtf 0beeddd90c2545f4f66e26acdfc444d3f359c56a mucbuc 2020-08-23 00:46:43
Commit ee5b38eb4ce21c50ce608caa7c0c965178497fe6 - fix build
Author: mucbuc
Author date (UTC): 2020-08-26 00:16
Committer name: mucbuc
Committer date (UTC): 2020-08-26 00:16
Parent(s): e241fafa91572ac800c75df02c9fc97e544879b3
Signing key:
Tree: da5bade362d8d715c14d070825b9371c478871da
File Lines added Lines deleted
blueprint/src/index.h 6 0
blueprint/test/src/example.cpp 1 1
blueprint/test/test.yml 2 2
templates.js 3 0
File blueprint/src/index.h added (mode: 100644) (index 0000000..aaf56a1)
1 #pragma once
2
3 namespace om636 {
4 namespace ${name} {
5 } // ${name}
6 } // om636
File blueprint/test/src/example.cpp changed (mode: 100644) (index 11132f6..0afa04a)
... ... using namespace om636::${name};
7 7
8 8 int main() int main()
9 9 { {
10 ASSERT(0 && "fail");
10 ASSERT(1 && "pass");
11 11 return 0; return 0;
12 12 } }
File blueprint/test/test.yml changed (mode: 100644) (index e034264..5b0c1ef)
1 1 --- ---
2 2 import: import:
3 - lib/circuit/${name}.yml
3 - lib/${name}/${name}.yml
4 4 sources: sources:
5 - src/main.cpp
5 - src/example.cpp
6 6
File templates.js changed (mode: 100755) (index 65ea084..99d36c7)
... ... function generateBuild(name) {
16 16 make('./blueprint/test/test.yml', make('./blueprint/test/test.yml',
17 17 {name}, {name},
18 18 'build/test/test.yml'); 'build/test/test.yml');
19 make('./blueprint/src/index.h',
20 {name},
21 'build/src/index.h');
19 22 } }
20 23
21 24 function make(source, context, dest) { function make(source, context, dest) {
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/mucbuc/configs

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/mucbuc/configs

Clone this repository using git:
git clone git://git.rocketgit.com/user/mucbuc/configs

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main