Skip to content

Commit ac23caa

Browse files
committed
Revert change: move private header files back to source tree
Signed-off-by: Mikael Sundell <[email protected]>
1 parent b8ce68f commit ac23caa

File tree

8 files changed

+271
-286
lines changed

8 files changed

+271
-286
lines changed

src/rawtoaces_core/rawtoaces_core.cpp

Lines changed: 267 additions & 274 deletions
Large diffs are not rendered by default.
File renamed without changes.
File renamed without changes.

tests/CMakeLists.txt

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,6 @@ add_test ( NAME Test_SpectralData COMMAND Test_SpectralData )
6969
add_executable (
7070
Test_IDT
7171
testIDT.cpp
72-
# Make the headers visible in IDEs. This should not affect the builds.
73-
rawtoaces_core_priv.h
7472
)
7573

7674
target_link_libraries(
@@ -88,8 +86,6 @@ add_test ( NAME Test_IDT COMMAND Test_IDT )
8886
add_executable (
8987
Test_Illum
9088
testIllum.cpp
91-
# Make the headers visible in IDEs. This should not affect the builds.
92-
rawtoaces_core_priv.h
9389
)
9490

9591
target_link_libraries(
@@ -107,8 +103,6 @@ add_test ( NAME Test_Illum COMMAND Test_Illum )
107103
add_executable (
108104
Test_DNGIdt
109105
testDNGIdt.cpp
110-
# Make the headers visible in IDEs. This should not affect the builds.
111-
rawtoaces_core_priv.h
112106
)
113107

114108
target_link_libraries(
@@ -194,8 +188,6 @@ add_test ( NAME Test_UsageTimer COMMAND Test_UsageTimer )
194188
add_executable (
195189
Test_ImageConverter
196190
test_image_converter.cpp
197-
# Make the headers visible in IDEs. This should not affect the builds.
198-
rawtoaces_util_priv.h
199191
)
200192

201193
target_link_libraries(

tests/testDNGIdt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#include <rawtoaces/rawtoaces_core.h>
88
#include "../src/rawtoaces_core/define.h"
9-
#include "rawtoaces_core_priv.h"
9+
#include "../src/rawtoaces_core/rawtoaces_core_priv.h"
1010

1111
void testIDT_CcttoMired()
1212
{

tests/testIDT.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
#include "../src/rawtoaces_core/mathOps.h"
1313
#include <rawtoaces/rawtoaces_core.h>
14-
#include "rawtoaces_core_priv.h"
14+
#include "../src/rawtoaces_core/rawtoaces_core_priv.h"
1515

1616
#define DATA_PATH "../_deps/rawtoaces_data-src/data/"
1717

tests/testIllum.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
#include "../src/rawtoaces_core/mathOps.h"
1313
#include <rawtoaces/rawtoaces_core.h>
14-
#include "rawtoaces_core_priv.h"
14+
#include "../src/rawtoaces_core/rawtoaces_core_priv.h"
1515

1616
#define DATA_PATH "../_deps/rawtoaces_data-src/data/"
1717

tests/test_image_converter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include <sys/stat.h> // for mkfifo
1717
#include <ctime>
1818

19-
#include "rawtoaces_util_priv.h"
19+
#include "../src/rawtoaces_util/rawtoaces_util_priv.h"
2020
#include <rawtoaces/image_converter.h>
2121

2222
using namespace rta::util;

0 commit comments

Comments
 (0)