Skip to content

Commit

Permalink
Add tutorial06 answer
Browse files Browse the repository at this point in the history
  • Loading branch information
miloyip committed Nov 15, 2016
1 parent 73606d0 commit a5a7abb
Show file tree
Hide file tree
Showing 5 changed files with 1,113 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tutorial06_answer/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
cmake_minimum_required (VERSION 2.6)
project (leptjson_test C)

if (CMAKE_C_COMPILER_ID MATCHES "GNU|Clang")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -ansi -pedantic -Wall")
endif()

add_library(leptjson leptjson.c)
add_executable(leptjson_test test.c)
target_link_libraries(leptjson_test leptjson)
Loading

0 comments on commit a5a7abb

Please sign in to comment.