# where will we concatenate options like macros, libs...
...
...
@@ -107,6 +108,9 @@ usage()
## Will be added later
echo " --otf_include_dir=<path> set the otf directory path (default is general/otf/otflib if --enable_otf is set)"
echo " --otf_library_dir=<path> set the otf library path (<path>/libotf.a)"
echo " --enable_tau"
echo " enables the tau support. The tau release used by default is in the src/general directory" # search in /usr/include, /usr/lib and if not found ask to download and install.
if [ $with_otf = 1 -a $with_otf_default = 1 ]; then # set the directory... should be decided by the user, we will see after how to do beautiful options :)
if [ $with_otf = 1 -a $with_otf_lib_default = 1 ]; then # set the directory... should be decided by the user, we will see after how to do beautiful options :)
cat >> "$makefile" <<EOF
OTFLIB_DIR = ./src/general/otf
...
...
@@ -275,7 +285,7 @@ clean:
cleanall: clean
EOF
if [ $with_otf = 1 -a $with_otf_default = 1 ]; then
if [ $with_otf = 1 -a $with_otf_lib_default = 1 ]; then
cat >>"$makefile" <<EOF
make -C \$(OTFLIB_DIR) clean
EOF
...
...
@@ -300,7 +310,7 @@ fi
EOF
if [ $with_otf = 1 -a $with_otf_default = 1 ]; then
if [ $with_otf = 1 -a $with_otf_lib_default = 1 ]; then
// CKFP(Info::Render::_ui_render_min_value = qFindChild<QLabel*>(this, "render_min_value"), "Cannot find the render_min_value label in the .ui file");
// CKFP(Info::Render::_ui_render_max_value = qFindChild<QLabel*>(this, "render_max_value"), "Cannot find the render_max_value label in the .ui file");
/* Export window */
CKFP(_ui_export_ok_button=qFindChild<QPushButton*>(_ui_time_selection_export,"option_export_ok"),"Cannot find the ok push button in the export dialog .ui file");
CKFP(_ui_min_time_export=qFindChild<QLineEdit*>(_ui_time_selection_export,"min_time"),"Cannot find the ok push button in the export dialog .ui file");
CKFP(_ui_max_time_export=qFindChild<QLineEdit*>(_ui_time_selection_export,"max_time"),"Cannot find the ok push button in the export dialog .ui file");
CKFP(_ui_CheckBox_time_export=qFindChild<QCheckBox*>(_ui_time_selection_export,"export_all"),"Cannot find the Line text \"export_all\" in the export dialog .ui file");
CKFP(_ui_wide_export=qFindChild<QLineEdit*>(_ui_time_selection_export,"wide"),"Cannot find the Line text \"wide\" in the export dialog .ui file");
CKFP(_ui_grow_export=qFindChild<QLineEdit*>(_ui_time_selection_export,"grow"),"Cannot find the Line text \"grow\" in the export dialog .ui file");
CKFP(_ui_accuracy_export=qFindChild<QLineEdit*>(_ui_time_selection_export,"accuracy"),"Cannot find the Line text \"accuracy\" in the export dialog .ui file");
CKFP(_ui_CheckBox_wide_export=qFindChild<QCheckBox*>(_ui_time_selection_export,"checkBox_wide"),"Cannot find the Line text \"wide\" in the export dialog .ui file");
CKFP(_ui_CheckBox_grow_export=qFindChild<QCheckBox*>(_ui_time_selection_export,"checkBox_grow"),"Cannot find the Line text \"grow\" in the export dialog .ui file");
CKFP(_ui_CheckBox_accuracy_export=qFindChild<QCheckBox*>(_ui_time_selection_export,"checkBox_accuracy"),"Cannot find the Line text \"accuracy\" in the export dialog .ui file");
CKFP(_ui_more_options_export=qFindChild<QCommandLinkButton*>(_ui_time_selection_export,"more_options"),"Cannot find the button \"more_options\" in the export dialog .ui file");
/* Help window */
CKFP(_ui_help_ok_button=qFindChild<QPushButton*>(_ui_help_window,"help_ok"),"Cannot find the ok push button in the help dialog .ui file");