patch: for irix, don't build test code and ignore a few warnings (thanks to Jim Hague)

This commit is contained in:
Nick Bolton
2012-07-20 15:11:37 +00:00
parent 82a439f893
commit fb377bbc78
2 changed files with 19 additions and 10 deletions

View File

@@ -12,13 +12,15 @@
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
add_subdirectory(lib)
add_subdirectory(cmd)
add_subdirectory(test)
add_subdirectory(plugin)
add_subdirectory(micro)
add_subdirectory(lib)
add_subdirectory(cmd)
if (NOT ${CMAKE_SYSTEM_NAME} MATCHES "IRIX")
add_subdirectory(test)
endif()
add_subdirectory(plugin)
add_subdirectory(micro)
if (VNC_SUPPORT)
add_subdirectory(vnc)
endif()