X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=plugins%2Fdali-sharp%2Fbuild%2FMakefile.am;h=f1e10e7e648abb652a25cbd90629fb4a6fb66757;hp=796c15c6259deef1bd25eb69e32dc3e510f17f21;hb=0f560f7e4e6c06338790fb52a3e77cd26baf895c;hpb=3cb8e6a33f15e320fce883304769c360292befbd diff --git a/plugins/dali-sharp/build/Makefile.am b/plugins/dali-sharp/build/Makefile.am index 796c15c..f1e10e7 100644 --- a/plugins/dali-sharp/build/Makefile.am +++ b/plugins/dali-sharp/build/Makefile.am @@ -13,7 +13,7 @@ # limitations under the License. CLEANFILES = ./dali-bindings/*.o *.so *.dll \ - ../examples/*.so ../examples/*.dll examples/*.exe + ../examples/*.so ../examples/*.dll examples/*.exe test/*.exe BUILT_SOURCES = ../dali-bindings/dali_wrap.cpp ../dali-bindings/dali_wrap.h @@ -48,14 +48,25 @@ $(DALI_BINDINGS_DIR): NDali.dll: $(BUILT_SOURCES) $(MCS) -nologo -target:library -out:NDali.dll ../sharp/internal/*.cs ../sharp/public/*.cs -check-local: examples/hello-world.exe \ +check-local: test/test.exe \ + examples/hello-world.exe \ examples/scroll-view.exe \ examples/control-dashboard.exe \ examples/user-alphafunction.exe \ examples/image-view.exe \ examples/visuals-example.exe \ examples/visuals-using-custom-view.exe \ - examples/libNDalic.so examples/NDali.dll + examples/libNDalic.so examples/NDali.dll \ + test/libNDalic.so test/NDali.dll + +test/test.exe: ../test/test.cs + $(MCS) -nologo -target:exe -out:../$@ -reference:NDali.dll $< + +test/libNDalic.so: + cd ../test && ln -sf ../build/libNDalic.so + +test/NDali.dll: + cd ../test && ln -sf ../build/NDali.dll examples/hello-world.exe: ../examples/hello-world.cs $(MCS) -nologo -target:exe -out:../$@ -reference:NDali.dll $<