From 5e6773397cc101c7c3d08482efc456daa91734e9 Mon Sep 17 00:00:00 2001 From: Aki Date: Fri, 1 Oct 2021 22:52:04 +0200 Subject: Switched to use only one version of Opcode --- Opcode/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Opcode/CMakeLists.txt') diff --git a/Opcode/CMakeLists.txt b/Opcode/CMakeLists.txt index e60d33c..d7b4ea5 100644 --- a/Opcode/CMakeLists.txt +++ b/Opcode/CMakeLists.txt @@ -50,5 +50,5 @@ target_precompile_headers( ) target_compile_definitions( Opcode - PUBLIC OPCODE_EXPORTS + PRIVATE OPCODE_EXPORTS ) -- cgit v1.1 From 3d90472a953b7aae1e8f4c75ebc70bdaa2b4626f Mon Sep 17 00:00:00 2001 From: Aki Date: Sat, 2 Oct 2021 00:02:53 +0200 Subject: Add missing define to Opcode compilation --- Opcode/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'Opcode/CMakeLists.txt') diff --git a/Opcode/CMakeLists.txt b/Opcode/CMakeLists.txt index d7b4ea5..6666061 100644 --- a/Opcode/CMakeLists.txt +++ b/Opcode/CMakeLists.txt @@ -51,4 +51,5 @@ target_precompile_headers( target_compile_definitions( Opcode PRIVATE OPCODE_EXPORTS + PUBLIC _ALLOW_KEYWORD_MACROS ) -- cgit v1.1 From d2f333bf998691760b8970c2784756d0fa81e820 Mon Sep 17 00:00:00 2001 From: Aki Date: Sun, 3 Oct 2021 00:07:12 +0200 Subject: Cleaned up Opcode cmake target --- Opcode/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Opcode/CMakeLists.txt') diff --git a/Opcode/CMakeLists.txt b/Opcode/CMakeLists.txt index 6666061..6010c50 100644 --- a/Opcode/CMakeLists.txt +++ b/Opcode/CMakeLists.txt @@ -42,11 +42,11 @@ add_library( ) target_include_directories( Opcode - PRIVATE . + PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} ) target_precompile_headers( Opcode - PRIVATE StdAfx.h + PUBLIC StdAfx.h ) target_compile_definitions( Opcode -- cgit v1.1