Initial Commit
This commit is contained in:
0
c3/docs/.gitkeep
Normal file
0
c3/docs/.gitkeep
Normal file
0
c3/lib/.gitkeep
Normal file
0
c3/lib/.gitkeep
Normal file
43
c3/project.json
Normal file
43
c3/project.json
Normal file
@@ -0,0 +1,43 @@
|
||||
{
|
||||
// Language version of C3.
|
||||
"langrev": "1",
|
||||
// Warnings used for all targets.
|
||||
"warnings": [ "no-unused" ],
|
||||
// Directories where C3 library files may be found.
|
||||
"dependency-search-paths": [ "lib" ],
|
||||
// Libraries to use for all targets.
|
||||
"dependencies": [ ],
|
||||
// Authors, optionally with email.
|
||||
"authors": [ "John Doe <john.doe@example.com>" ],
|
||||
// Version using semantic versioning.
|
||||
"version": "0.1.0",
|
||||
// Sources compiled for all targets.
|
||||
"sources": [ "src/**" ],
|
||||
// Test sources compiled for all targets.
|
||||
"test-sources": [ "test/**" ],
|
||||
// C sources if the project also compiles C sources
|
||||
// relative to the project file.
|
||||
// "c-sources": [ "csource/**" ],
|
||||
// Include directories for C sources relative to the project file.
|
||||
// "c-include-dirs": [ "csource/include" ],
|
||||
// Output location, relative to project file.
|
||||
"output": "build",
|
||||
// Architecture and OS target.
|
||||
// You can use 'c3c --list-targets' to list all valid targets.
|
||||
// "target": "windows-x64",
|
||||
// Targets.
|
||||
"targets": {
|
||||
"ssg": {
|
||||
// Executable or library.
|
||||
"type": "executable",
|
||||
// Additional libraries, sources
|
||||
// and overrides of global settings here.
|
||||
},
|
||||
},
|
||||
// Global settings.
|
||||
// CPU name, used for optimizations in the LLVM backend.
|
||||
"cpu": "generic",
|
||||
// Optimization: "O0", "O1", "O2", "O3", "O4", "O5", "Os", "Oz".
|
||||
"opt": "O0"
|
||||
// See resources/examples/project_all_settings.json and 'c3c --list-project-properties' to see more properties.
|
||||
}
|
||||
0
c3/resources/.gitkeep
Normal file
0
c3/resources/.gitkeep
Normal file
0
c3/scripts/.gitkeep
Normal file
0
c3/scripts/.gitkeep
Normal file
0
c3/src/.gitkeep
Normal file
0
c3/src/.gitkeep
Normal file
8
c3/src/main.c3
Normal file
8
c3/src/main.c3
Normal file
@@ -0,0 +1,8 @@
|
||||
module ssg;
|
||||
import std::io;
|
||||
|
||||
fn int main(String[] args)
|
||||
{
|
||||
io::printn("Hello, World!");
|
||||
return 0;
|
||||
}
|
||||
0
c3/test/.gitkeep
Normal file
0
c3/test/.gitkeep
Normal file
Reference in New Issue
Block a user