Changeset 45 in flair-src for trunk/lib/FlairFilter
- Timestamp:
- Jul 18, 2016, 4:13:56 PM (9 years ago)
- Location:
- trunk/lib/FlairFilter
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairFilter/CMakeLists.txt
r7 r45 44 44 45 45 SET(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin) 46 47 add_custom_target( 48 compile_info 49 COMMAND $ENV{FLAIR_ROOT}/flair-dev/scripts/compile_info.sh ${CMAKE_C_COMPILER} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/src/unexported/compile_info.h 50 ) 51 52 add_dependencies(${PROJECT_NAME} compile_info) -
trunk/lib/FlairFilter/src/UavMultiplex.cpp
r15 r45 22 22 #include <Tab.h> 23 23 #include <GridLayout.h> 24 #include "compile_info.h" 24 25 25 26 using std::string; 26 27 using namespace flair::core; 27 28 using namespace flair::gui; 29 30 //todo: put it on seprate file, but not possible with static lib? 31 static void constructor() __attribute__((constructor)); 32 33 void constructor() { 34 compile_info("FlairFilter"); 35 } 36 28 37 29 38 namespace flair {
Note:
See TracChangeset
for help on using the changeset viewer.