This commit is contained in:
2026-02-20 08:53:03 +03:00
parent e0904690e6
commit 260b3b97f9
6 changed files with 27 additions and 27 deletions

View File

@@ -3,7 +3,6 @@ add_subdirectory(example_glfw3)
add_subdirectory(example_proj_mat_builder) add_subdirectory(example_proj_mat_builder)
add_subdirectory(example_signature_scan) add_subdirectory(example_signature_scan)
if(OMATH_ENABLE_VALGRIND) if(OMATH_ENABLE_VALGRIND)
omath_setup_valgrind(example_projection_matrix_builder) omath_setup_valgrind(example_projection_matrix_builder)
omath_setup_valgrind(example_signature_scan) omath_setup_valgrind(example_signature_scan)

View File

@@ -1,7 +1,8 @@
project(example_signature_scan) project(example_signature_scan)
add_executable(${PROJECT_NAME} example_signature_scan.cpp) add_executable(${PROJECT_NAME} example_signature_scan.cpp)
set_target_properties(${PROJECT_NAME} set_target_properties(
${PROJECT_NAME}
PROPERTIES CXX_STANDARD 23 PROPERTIES CXX_STANDARD 23
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_SOURCE_DIR}/out/${CMAKE_BUILD_TYPE}" ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_SOURCE_DIR}/out/${CMAKE_BUILD_TYPE}"
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_SOURCE_DIR}/out/${CMAKE_BUILD_TYPE}" LIBRARY_OUTPUT_DIRECTORY "${CMAKE_SOURCE_DIR}/out/${CMAKE_BUILD_TYPE}"

View File

@@ -8,7 +8,7 @@ cd "$REPO_ROOT"
find . \ find . \
-path "./build" -prune -o \ -path "./build" -prune -o \
-path "./cmake-build-*" -prune -o \ -path "./cmake-build*" -prune -o \
-path "./out" -prune -o \ -path "./out" -prune -o \
-path "./.git" -prune -o \ -path "./.git" -prune -o \
\( -name "CMakeLists.txt" -o -name "*.cmake" \) -print0 \ \( -name "CMakeLists.txt" -o -name "*.cmake" \) -print0 \