Initial commit with ttrts base main.cpp
This commit is contained in:
commit
bf2f79dc8d
2 changed files with 19 additions and 0 deletions
14
ttrts/CMakeLists.txt
Normal file
14
ttrts/CMakeLists.txt
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
# ====================== ttrts =======================
|
||||||
|
# Project name
|
||||||
|
project( ttrts )
|
||||||
|
|
||||||
|
# Add the sources
|
||||||
|
set( SOURCES
|
||||||
|
main.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
# Set to use c++11, because we're cool like that
|
||||||
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --std=c++11" )
|
||||||
|
|
||||||
|
# Add the executable
|
||||||
|
add_executable( ttrts ${SOURCES} )
|
5
ttrts/main.cpp
Normal file
5
ttrts/main.cpp
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
// Main program entry point
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
};
|
Loading…
Add table
Add a link
Reference in a new issue