Fabian Peter Hammerle 10 년 전
커밋
351795353a
3개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      .gitignore
  2. 3 0
      CMakeLists.txt
  3. 7 0
      main.cpp

+ 1 - 0
.gitignore

@@ -0,0 +1 @@
+.*.swp

+ 3 - 0
CMakeLists.txt

@@ -0,0 +1,3 @@
+cmake_minimum_required (VERSION 2.6)
+project (launchpad-sequencer)
+add_executable(launchpad-sequencer main.cpp)

+ 7 - 0
main.cpp

@@ -0,0 +1,7 @@
+#include <iostream>
+
+int main() 
+{
+    return 0;
+}
+