Created
January 13, 2015 17:39
-
-
Save yasuharu519/eea3429db10320df7983 to your computer and use it in GitHub Desktop.
CMakeLists file for dropbox/json11 https://github.com/dropbox/json11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 2.8) | |
add_definitions("-Wall -std=c++11") | |
add_library(json11 STATIC json11.cpp) | |
install(TARGETS json11 ARCHIVE DESTINATION lib LIBRARY DESTINATION lib) | |
install(FILES json11.hpp DESTINATION include) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment