mirror of
https://github.com/anrieff/libcpuid
synced 2025-10-03 11:01:30 +00:00
Add CMake
This commit is contained in:
parent
7b360635aa
commit
12de298ff7
4 changed files with 103 additions and 0 deletions
9
cpuid_tool/CMakeLists.txt
Normal file
9
cpuid_tool/CMakeLists.txt
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue