forked from stepcode/stepcode.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (90 loc) · 3.17 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
---
layout: front
title: STEPcode • Data Exchange with the technologies of ISO 10303
overview: true
---
<section class="intro">
<div class="grid">
<div class="unit whole center-on-mobiles">
<p class="first">Data Exchange with ISO 10303</p>
</div>
</div>
</section>
<section class="features">
<div class="grid">
<div class="unit one-third">
<h2>Standard</h2>
<p>
Utilize components of ISO10303—together <em>or individually</em>—to exchange data.
</p>
<a href="/docs/usage/">How STEPcode works →</a>
</div>
<div class="unit one-third">
<h2>Open Source</h2>
<p>
STEP isn't exactly an easy standard to understand.
Do you need to examine the handling of a particular construct?
Or maybe you want to be able to squash bugs if/when you encounter them.
Either way, you <em>can</em> poke around under the hood if you so desire.
</p>
<a href="/docs/code/">Code overview →</a>
</div>
<div class="unit one-third">
<h2>Flexible</h2>
<p>
C? C++? Python? EXPRESS without a STEP serialization format? IFC, or other standards not part of ISO10303? All are possible with STEPcode.
</p>
<a href="/docs/examples/">Examples →</a>
</div>
<div class="clear"></div>
</div>
</section>
<section class="quickstart">
<!-- <div class="grid">
<div class="unit golden-small center-on-mobiles">
<h3>Get up and running <em>in seconds</em>.</h3>
</div>-->
<!-- <div class="unit golden-large code"> -->
<div class="unit code">
<!-- TODO instructions for Win, OSX -->
<p class="title">Quick-start Instructions</p>
<div class="shell">
<p class="line">
<span class="path">~</span>
<span class="prompt">$</span>
<span class="command">sudo apt-get install git cmake gcc make</span>
</p>
<p class="line">
<span class="path">~</span>
<span class="prompt">$</span>
<span class="command">git clone https://github.com/stepcode/stepcode.git stepcode</span>
</p>
<p class="line">
<span class="path">~</span>
<span class="prompt">$</span>
<span class="command">cd stepcode; mkdir build; cd build</span>
</p>
<p class="line">
<span class="path">~</span>
<span class="prompt">$</span>
<span class="command">cmake .. -DSC_BUILD_SCHEMAS=ap214</span>
</p>
<p class="line">
<span class="path">~</span>
<span class="prompt">$</span>
<span class="command">make -j4</span>
</p>
<p class="line">
<span class="output"># => This generates code for the specified schema (AP214) and compiles it.</span>
</p>
<!-- <p class="line">
<span class="output"># => Libraries, including AP214 SDAI, are now available in ./lib</span>
</p>-->
<p class="line">
<span class="output"># => Utilities and support libs are compiled as well. All are placed in ./bin and ./lib </span>
</p>
</div>
</div>
<div class="clear"></div>
<!-- </div> -->
</section>