The makefile for the test was kindof wrong

Alex
This commit is contained in:
Alex Neundorf 2011-08-14 15:38:24 +02:00
parent fd15b5e1c4
commit 6bb4ca3802
1 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,9 @@
all: clean pngtest
pngtest: main.o
main.o: main.cpp
"@CMAKE_CXX_COMPILER@" -c `"@cmakeExecutable@" --find-package -DNAME=PNG -DLANGUAGE=CXX -DCOMPILER_ID=@CMAKE_CXX_COMPILER_ID@ -DMODE=COMPILE` main.cpp
pngtest: main.o
"@CMAKE_CXX_COMPILER@" -o pngtest main.o `"@cmakeExecutable@" --find-package -DNAME=PNG -DLANGUAGE=CXX -DCOMPILER_ID=@CMAKE_CXX_COMPILER_ID@ -DMODE=LINK`
clean: