cppformat -> fmt

This commit is contained in:
Victor Zverovich
2016-04-24 07:45:13 -07:00
parent 848ab63a2a
commit 5e1576f79f
7 changed files with 49 additions and 41 deletions

View File

@ -1,13 +1,13 @@
cmake_minimum_required(VERSION 2.8.12)
project(cppformat-test)
project(fmt-test)
add_subdirectory(../.. cppformat)
add_subdirectory(../.. fmt)
add_executable(library-test "main.cc")
target_link_libraries(library-test cppformat)
target_link_libraries(library-test fmt)
if (TARGET cppformat-header-only)
if (TARGET fmt-header-only)
add_executable(header-only-test "main.cc")
target_link_libraries(header-only-test cppformat-header-only)
target_link_libraries(header-only-test fmt-header-only)
endif ()