mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
20 lines
346 B
CMake
20 lines
346 B
CMake
|
cmake_minimum_required( VERSION 3.16 )
|
||
|
|
||
|
project( libdetours )
|
||
|
add_library( ${PROJECT_NAME} )
|
||
|
|
||
|
start_sources()
|
||
|
|
||
|
add_sources( SOURCE_GROUP "Runtime"
|
||
|
"src/creatwth.cpp"
|
||
|
"src/detours.cpp"
|
||
|
"src/disasm.cpp"
|
||
|
"src/modules.cpp"
|
||
|
"include/detours.h"
|
||
|
"include/detver.h"
|
||
|
"include/idetour.h"
|
||
|
"include/syelog.h"
|
||
|
)
|
||
|
|
||
|
end_sources()
|