mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 07:03:25 +00:00
Implements a basic example demonstrating how to scan for a given pattern within a PE file. The example takes a file path, section, and signature as input and utilizes the `omath::PePatternScanner` to locate the signature within the specified section of the PE file.
9 lines
466 B
CMake
9 lines
466 B
CMake
project(examples)
|
|
|
|
add_executable(example_projection_matrix_builder example_proj_mat_builder.cpp)
|
|
set_target_properties(example_projection_matrix_builder PROPERTIES CXX_STANDARD 26)
|
|
target_link_libraries(example_projection_matrix_builder PRIVATE omath::omath)
|
|
|
|
add_executable(example_signature_scan example_signature_scan.cpp)
|
|
set_target_properties(example_signature_scan PROPERTIES CXX_STANDARD 26)
|
|
target_link_libraries(example_signature_scan PRIVATE omath::omath) |