mirror of
https://github.com/anrieff/libcpuid
synced 2024-11-10 22:59:13 +00:00
16 lines
373 B
CMake
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()
|