isundil 9 年 前
コミット
adbd27f1f0
3 ファイル変更23 行追加0 行削除
  1. 7 0
      .gitignore
  2. 11 0
      CMakeLists.txt
  3. 5 0
      src/main.cpp

+ 7 - 0
.gitignore

@@ -28,3 +28,10 @@
 *.out
 *.app
 
+# CMakeLists
+/CMakeCache.txt
+/CMakeFiles
+/bin
+/cmake_install.cmake
+/Makefile
+

+ 11 - 0
CMakeLists.txt

@@ -0,0 +1,11 @@
+cmake_minimum_required(VERSION 2.8)
+
+add_executable(jsonstroll src/main.cpp)
+
+set_property(TARGET jsonstroll PROPERTY RUNTIME_OUTPUT_DIRECTORY bin)
+
+add_definitions ("-Wall")
+add_definitions ("-g3")
+
+include_directories(src include)
+

+ 5 - 0
src/main.cpp

@@ -0,0 +1,5 @@
+
+int main()
+{
+}
+