Commit 10ca886e5488d45859d1880577fc8f065a07555e
Committed by
Taeyoon Lee
1 parent
ffec0c80
Working... Add missed tag and fix launch issue
- Fix mismatch between <ui...> and </ui..> - Add DALI_EXPORT_API TODO> Example launch issue in dali-demo Change-Id: I3c685d79c725e08d3798eb9e906734effd1a2fd0
Showing
4 changed files
with
4 additions
and
3 deletions
build/tizen/demo/CMakeLists.txt
| ... | ... | @@ -3,7 +3,7 @@ SET(DEMO_SRC_DIR ${ROOT_SRC_DIR}/demo) |
| 3 | 3 | AUX_SOURCE_DIRECTORY(${DEMO_SRC_DIR} DEMO_SRCS) |
| 4 | 4 | |
| 5 | 5 | ADD_EXECUTABLE(${PROJECT_NAME} ${DEMO_SRCS}) |
| 6 | -TARGET_LINK_LIBRARIES(${PROJECT_NAME} ${REQUIRED_PKGS_LDFLAGS}) | |
| 6 | +TARGET_LINK_LIBRARIES(${PROJECT_NAME} ${REQUIRED_PKGS_LDFLAGS} -pie) | |
| 7 | 7 | |
| 8 | 8 | INSTALL(TARGETS ${PROJECT_NAME} DESTINATION ${BINDIR}) |
| 9 | 9 | ... | ... |
com.samsung.dali-demo.xml
| ... | ... | @@ -147,6 +147,7 @@ |
| 147 | 147 | </ui-application> |
| 148 | 148 | <ui-application appid="native-image-source.example" exec="/usr/apps/com.samsung.dali-demo/bin/native-image-source.example" nodisplay="true" multiple="false" type="c++app" taskmanage="true"> |
| 149 | 149 | <label>Native Image Source</label> |
| 150 | + </ui-application> | |
| 150 | 151 | <ui-application appid="perf-scroll.example" exec="/usr/apps/com.samsung.dali-demo/bin/perf-scroll.example" nodisplay="true" multiple="false" type="c++app" taskmanage="true"> |
| 151 | 152 | <label>perf-scroll</label> |
| 152 | 153 | </ui-application> | ... | ... |
demo/dali-demo.cpp
examples/perf-scroll/perf-scroll.cpp
| ... | ... | @@ -496,7 +496,7 @@ void RunTest( Application& application ) |
| 496 | 496 | |
| 497 | 497 | // Entry point for Linux & Tizen applications |
| 498 | 498 | // |
| 499 | -int main( int argc, char **argv ) | |
| 499 | +int DALI_EXPORT_API main( int argc, char **argv ) | |
| 500 | 500 | { |
| 501 | 501 | Application application = Application::New( &argc, &argv ); |
| 502 | 502 | ... | ... |