mirror of
https://github.com/anrieff/libcpuid
synced 2024-11-10 22:59:13 +00:00
9 lines
282 B
Text
9 lines
282 B
Text
|
add_executable(cpuid_tool cpuid_tool.c)
|
||
|
target_link_libraries(cpuid_tool PRIVATE cpuid)
|
||
|
|
||
|
install(TARGETS cpuid_tool
|
||
|
CONFIGURATIONS Debug
|
||
|
RUNTIME DESTINATION bin/Debug)
|
||
|
install(TARGETS cpuid_tool
|
||
|
CONFIGURATIONS Release
|
||
|
RUNTIME DESTINATION bin/Release)
|