Some repositories couldn't be updated, please check application logs for details.
BadCredentialsException: 401 {"message": "Bad credentials", "documentation_url": "https://docs.github.com/rest", "status": "401"}

aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/um/wrappers/special/nt_namespace/utils/CMakeLists.txt
blob: 5d354ce373b3512f41ced09118a5a733bd966085 (plain) (blame)
1
2
3
4
5
6
7
8
9
add_executable(nt_namespace_convert convert_nt_path.cpp)
target_link_libraries(nt_namespace_convert PRIVATE nt_namespace)
set_target_properties(nt_namespace_convert PROPERTIES OUTPUT_NAME convert_nt_path)
if(MINGW)
    target_compile_options(nt_namespace_convert PRIVATE -municode)
    target_link_libraries(nt_namespace_convert PRIVATE -municode)
endif()

install(TARGETS nt_namespace_convert RUNTIME DESTINATION bin)