diff --git a/CMakeLists.txt b/CMakeLists.txt index 27cfa9e..c07d874 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -68,7 +68,7 @@ target_sources(Greeter PRIVATE ${headers} ${sources}) # being a cross-platform target, we enforce standards conformance on MSVC # this should not exported on UNIX! CK -# FIXME target_compile_options(Greeter PUBLIC "$<$:/permissive->") +target_compile_options(Greeter PUBLIC "$<$:/permissive->") # Link dependencies (if required) target_link_libraries(Greeter PRIVATE fmt::fmt-header-only) @@ -94,5 +94,5 @@ packageProject( INCLUDE_DIR ${PROJECT_SOURCE_DIR}/include INCLUDE_DESTINATION include/${PROJECT_NAME}-${PROJECT_VERSION} VERSION_HEADER "${VERSION_HEADER_LOCATION}" - #XXX DEPENDENCIES fmt + DEPENDENCIES fmt )