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