1
0
Fork 0
mirror of https://github.com/anrieff/libcpuid synced 2025-01-23 20:06:41 +00:00
libcpuid/cpuid_tool/CMakeLists.txt
2020-05-21 18:43:34 +02:00

16 lines
373 B
CMake

add_executable(cpuid_tool cpuid_tool.c)
target_link_libraries(cpuid_tool cpuid)
if(WIN32)
install(
TARGETS cpuid_tool
CONFIGURATIONS Debug
RUNTIME DESTINATION bin/Debug)
install(
TARGETS cpuid_tool
CONFIGURATIONS Release
RUNTIME DESTINATION bin/Release)
else()
install(TARGETS cpuid_tool RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
endif()