1
0
Fork 0
mirror of https://github.com/anrieff/libcpuid synced 2025-10-03 11:01:30 +00:00

Add CMake

This commit is contained in:
kreuzerkrieg 2020-02-06 08:02:51 +02:00
commit 12de298ff7
4 changed files with 103 additions and 0 deletions

View file

@ -0,0 +1,9 @@
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)