2023-05-10 00:05:38 +02:00
|
|
|
cmake_minimum_required( VERSION 3.16 )
|
2023-06-17 00:45:27 +02:00
|
|
|
add_module( "lib" "libdetours" "" ${FOLDER_CONTEXT} TRUE TRUE )
|
2023-05-10 00:05:38 +02:00
|
|
|
|
|
|
|
start_sources()
|
|
|
|
|
2023-05-14 17:36:08 +02:00
|
|
|
add_sources( SOURCE_GROUP "Source"
|
2023-05-10 00:05:38 +02:00
|
|
|
"src/creatwth.cpp"
|
|
|
|
"src/detours.cpp"
|
|
|
|
"src/disasm.cpp"
|
2023-07-03 13:37:41 +02:00
|
|
|
"src/idetour.cpp"
|
2023-05-10 00:05:38 +02:00
|
|
|
"src/modules.cpp"
|
2023-05-14 17:36:08 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
add_sources( SOURCE_GROUP "Include"
|
2023-05-10 00:05:38 +02:00
|
|
|
"include/detours.h"
|
|
|
|
"include/detver.h"
|
|
|
|
"include/idetour.h"
|
|
|
|
"include/syelog.h"
|
|
|
|
)
|
|
|
|
|
|
|
|
end_sources()
|