Replace SENFSCons.InstallIncludeFiles with InstallSubdir builder calls
[senf.git] / Utils / Console / SConscript
index 31345a6..5303f1a 100644 (file)
@@ -7,7 +7,9 @@ import SENFSCons
 
 sources, includes = SENFSCons.Glob(env, exclude=['testServer.cc'])
 
-SENFSCons.StandardTargets(env)
 SENFSCons.Lib(env, sources)
 SENFSCons.Doxygen(env)
-SENFSCons.InstallIncludeFiles(env, includes)
+
+env.InstallSubdir(target = '$INCLUDEINSTALLDIR', source = includes)
+
+SENFSCons.Binary(env, "testServer", ['testServer.cc'])