File tree 5 files changed +8
-6
lines changed
5 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.20)
2
2
3
- list (APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR} /cmake" )
4
-
5
3
set (LANGUAGES C)
6
4
if (BUILD_TESTING)
7
5
set (CMAKE_CXX_STANDARD 14)
@@ -26,6 +24,8 @@ project(projectm-eval
26
24
LANGUAGES ${LANGUAGES} # Using "enable_language(CXX)" in the test dir will NOT work properly!
27
25
)
28
26
27
+ list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR} /cmake" )
28
+
29
29
include (GNUInstallDirs)
30
30
include (FastMathOptimizations)
31
31
include (CheckCSourceCompiles)
Original file line number Diff line number Diff line change 1
1
extern " C"
2
2
{
3
- #include < MemoryBuffer.h>
3
+ #include < projectm-eval/ MemoryBuffer.h>
4
4
}
5
5
6
6
void projectm_eval_memory_host_lock_mutex (){}
Original file line number Diff line number Diff line change @@ -69,8 +69,8 @@ add_library(projectM_eval STATIC
69
69
70
70
target_include_directories (projectM_eval
71
71
PUBLIC
72
- $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR} >
73
- $<BUILD_INTERFACE:${CMAKE_SOURCE_DIR} >
72
+ $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR} /.. >
73
+ $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR} /api >
74
74
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR} /projectm-eval>
75
75
)
76
76
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ find_package(GTest 1.10 REQUIRED NO_MODULE)
4
4
add_executable (projectM_EvalLib_Test
5
5
InstructionListTest.cpp
6
6
InstructionListTest.hpp
7
+ PrecedenceTest.cpp
8
+ PrecedenceTest.hpp
7
9
Stubs.cpp
8
10
TreeFunctionsTest.cpp
9
11
)
Original file line number Diff line number Diff line change 1
1
extern " C"
2
2
{
3
- #include < MemoryBuffer.h>
3
+ #include < projectm-eval/ MemoryBuffer.h>
4
4
}
5
5
6
6
void projectm_eval_memory_host_lock_mutex (){}
You can’t perform that action at this time.
0 commit comments