Skip to content

Commit

Permalink
Fixed - root CMakeLists.txt did not request C++11 support for Win32 b…
Browse files Browse the repository at this point in the history
…uild. Fixed - defects4importoptions.h for io_dlpoly was not included in makedist target. Fixed - EXTRA_DIST target in root Makefile.am did not account for new test directory layout.
  • Loading branch information
trisyoungs committed Aug 26, 2016
1 parent 1244276 commit c082eac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ CMAKE_POLICY(SET CMP0020 NEW)
if(WIN32)
set (target_name Aten)

# Request C++11 Standard Support (Required for Qt 5.7)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")

# Adjust external include directories
include_directories(
${FTGL_INCLUDE_DIRS}
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SUFFIXES: .dt
sed -e "s:PREFIX:@INSTALLDIR@:" -e "s:VERSION:@VERSION@:" $< > $@

EXTRA_DIST = src/gui/icons/*.* src/gui/freefont/*
EXTRA_DIST += data/ff/* data/fftesting/* data/filters/* data/fragments/*/* data/partitions/* data/test/* data/scripts/* data/external/*
EXTRA_DIST += data/ff/* data/fftesting/* data/filters/* data/fragments/*/* data/partitions/* data/test/*/* data/scripts/* data/external/*
EXTRA_DIST += TODO TODO2
EXTRA_DIST += CMakeLists.txt cmake/* src/CMakeLists.txt src/*/CMakeLists.txt
EXTRA_DIST += desktop.cmake
Expand Down
3 changes: 1 addition & 2 deletions src/plugins/io_dlpoly/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,4 @@ dlp4defects_la_LDFLAGS = -module -shared -avoid-version

AM_CPPFLAGS = -I${top_srcdir}/src @ATEN_INCLUDES@ @ATEN_CFLAGS@

noinst_HEADERS = common.h dlp2exportoptions.h dlp2importoptions.h dlp4exportoptions.h dlp4importoptions.h

noinst_HEADERS = common.h defects4importoptions.h dlp2exportoptions.h dlp2importoptions.h dlp4exportoptions.h dlp4importoptions.h

0 comments on commit c082eac

Please sign in to comment.