Skip to content

Commit a4b0aa4

Browse files
committed
Fix #4
1 parent 4a800ec commit a4b0aa4

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# Get our location.
1313
OURDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
1414

15-
SDK_VERSION='1.0.0'
15+
SDK_VERSION='1.0.1'
1616
# If the tiny version number is 0, drop it.
1717
SDK_VERSION_PRETTY=`echo -n "${SDK_VERSION}" | sed -E -e 's/([0-9]+\.[0-9]+)\.0/\1/'`
1818
SDK_URL_DIR="https://github.com/artoolkitx/artoolkitx/releases/download/${SDK_VERSION_PRETTY}/"
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>

prefs.hpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,6 @@
4444
// Data upload.
4545
#define CALIBRATION_PATTERN_TYPE_DEFAULT Calibration::CalibrationPatternType::CHESSBOARD
4646

47-
#ifdef __cplusplus
48-
extern "C" {
49-
#endif
50-
5147
void *initPreferences(void);
5248
void showPreferences(void *preferences);
5349
void preferencesFinal(void **preferences_p);
@@ -62,7 +58,4 @@ cv::Size getPreferencesCalibrationPatternSize(void *preferences);
6258
float getPreferencesCalibrationPatternSpacing(void *preferences);
6359
char *getPreferenceCalibSaveDir(void *preferences);
6460

65-
#ifdef __cplusplus
66-
}
67-
#endif
6861
#endif /* prefs_hpp */

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
extern "C" {
4343
#endif
4444

45-
#define VERSION_STRING "1.0"
45+
#define VERSION_STRING "1.0.1"
4646

4747
#ifdef __cplusplus
4848
}

0 commit comments

Comments
 (0)