Browse Source

update eez-framework

master
Martin Vladic 2 years ago
parent
commit
1bbc63f121
  1. 2
      .gitmodules
  2. 18
      CMakeLists.txt
  3. 1
      eez
  4. 1
      eez-framework
  5. 3
      src/conf/eez/gui_conf.h
  6. 0
      src/eez-framework-conf.h
  7. 3
      src/eez-framework-gui-conf.h
  8. BIN
      src/platform/simulator/win32/icon.rc

2
.gitmodules vendored

@ -1,3 +1,3 @@
[submodule "eez"]
path = eez
path = eez-framework
url = https://github.com/eez-open/eez-framework

18
CMakeLists.txt

@ -48,10 +48,10 @@ if(${CMAKE_SYSTEM_NAME} STREQUAL "Emscripten")
endif()
include_directories(
./
./eez/libs/agg
./eez/platform/simulator
./src/conf
./src
./eez-framework/src
./eez-framework/src/eez/libs/agg
./eez-framework/src/eez/platform/simulator
)
@ -62,15 +62,15 @@ set(header_files)
################################################################################
# EEZ Framework files
file(GLOB_RECURSE src_eez
eez/*.cpp
eez/*.c
./eez-framework/src/eez/*.cpp
./eez-framework/src/eez/*.c
)
file(GLOB_RECURSE header_eez
eez/*.h
./eez-framework/src/eez/*.h
)
# exclude STM32 platform specific files
set (EXCLUDE_DIR "eez/platform/stm32")
set (EXCLUDE_DIR "./eez-framework/src/eez/platform/stm32")
foreach (TMP_PATH ${src_eez})
string (FIND ${TMP_PATH} ${EXCLUDE_DIR} EXCLUDE_DIR_FOUND)
if (NOT ${EXCLUDE_DIR_FOUND} EQUAL -1)
@ -85,7 +85,7 @@ foreach (TMP_PATH ${header_eez})
endforeach(TMP_PATH)
# exclude libscpi
set (EXCLUDE_DIR "eez/libs/libscpi")
set (EXCLUDE_DIR "./eez-framework/src/eez/libs/libscpi")
foreach (TMP_PATH ${src_eez})
string (FIND ${TMP_PATH} ${EXCLUDE_DIR} EXCLUDE_DIR_FOUND)
if (NOT ${EXCLUDE_DIR_FOUND} EQUAL -1)

1
eez

@ -1 +0,0 @@
Subproject commit 3051f99c87634240d3e7af3c58d9f7594b267519

1
eez-framework

@ -0,0 +1 @@
Subproject commit e67a5a5008f34d6d19b08131e0807438998dfdc5

3
src/conf/eez/gui_conf.h

@ -1,3 +0,0 @@
#pragma once
#include "../../gui/document.h"

0
src/conf/eez/conf.h → src/eez-framework-conf.h

3
src/eez-framework-gui-conf.h

@ -0,0 +1,3 @@
#pragma once
#include "gui/document.h"

BIN
src/platform/simulator/win32/icon.rc

Binary file not shown.
Loading…
Cancel
Save