#**********************************************************************
#* Copyright (c) 2009 David Carter <dcarter@davidcarter.ca> and others.
#* All rights reserved.   This program and the accompanying materials
#* are made available under the terms of the Eclipse Public License v1.0
#* which accompanies this distribution, and is available at
#* http://www.eclipse.org/legal/epl-v10.html
#*
#* Contributors:
#* David Carter - Initial API and implementation
#**********************************************************************

include_directories (${QPP_SOURCE_DIR}/include) 
link_directories (${QPP_BINARY_DIR}/lib)

add_executable (open1 open1.cpp)
target_link_libraries (open1 qpp)

add_executable (test1 Test1.cpp)
target_link_libraries (test1 qpp)

add_executable (test2 Test2.cpp)
target_link_libraries (test2 qpp)

