Daybreak connection classes

This commit is contained in:
KimLS
2016-09-04 19:56:30 -07:00
parent 9597101f08
commit b62cc3b6fa
208 changed files with 91326 additions and 2 deletions
@@ -0,0 +1,13 @@
cmake_minimum_required(VERSION 2.8.12)
project(fmt-test)
add_subdirectory(../.. fmt)
add_executable(library-test "main.cc")
target_link_libraries(library-test fmt)
if (TARGET fmt-header-only)
add_executable(header-only-test "main.cc")
target_link_libraries(header-only-test fmt-header-only)
endif ()
@@ -0,0 +1,6 @@
#include "fmt/format.h"
int main(int argc, char** argv) {
for(int i = 0; i < argc; ++i)
fmt::print("{}: {}\n", i, argv[i]);
}