/processing/crprober/CMakeLists.txt
http://crashrpt.googlecode.com/ · CMake · 21 lines · 9 code · 7 blank · 5 comment · 0 complexity · 933155bfe4fddf83724b00aa6209272e MD5 · raw file
- project(crprober)
-
- # Create the list of source files
- aux_source_directory( . source_files )
- file( GLOB header_files *.h )
-
- # Define _UNICODE (use wide-char encoding)
- add_definitions(-D_UNICODE )
-
- fix_default_compiler_settings_()
-
- # Add include dir
- include_directories(${CMAKE_SOURCE_DIR}/include)
-
- # Add executable build target
- add_executable(crprober ${source_files} ${header_files})
-
- # Add input link libraries
- target_link_libraries(crprober CrashRptProbe)
-
- set_target_properties(crprober PROPERTIES DEBUG_POSTFIX d )