diff --git a/CMakeLists.txt b/CMakeLists.txt index c12e693..596f9b7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -90,11 +90,11 @@ adaptive_brightness_add_compile_flags(AdaptiveBrightness) adaptive_brightness_enable_warnings(AdaptiveBrightness) if(${LOG_SOURCE_FILE}) - adaptive_brightness_enable_source_file_log(AdaptiveBrightness) + target_compile_definitions(${target} PUBLIC LOG_SOURCE_LOCATION) endif() if(${LOG_FUNCTION}) - adaptive_brightness_enable_function_name_log(AdaptiveBrightness) + target_compile_definitions(${target} PUBLIC LOG_FUNCTION_LOCATION) endif() set_property(DIRECTORY PROPERTY VS_STARTUP_PROJECT AdaptiveBrightness) diff --git a/cmake/compile_flags.cmake b/cmake/compile_flags.cmake index 1a324aa..30b2e8a 100644 --- a/cmake/compile_flags.cmake +++ b/cmake/compile_flags.cmake @@ -12,11 +12,3 @@ function(adaptive_brightness_enable_warnings target) target_compile_options(${target} PRIVATE /W3) endif() endfunction() - -function(adaptive_brightness_enable_source_file_log target) - target_compile_definitions(${target} PUBLIC LOG_SOURCE_LOCATION) -endfunction() - -function(adaptive_brightness_enable_function_name_log target) - target_compile_definitions(${target} PUBLIC LOG_FUNCTION_LOCATION) -endfunction()