diff options
author | Scott Murray <scott.murray@konsulko.com> | 2020-06-25 12:51:41 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2020-06-25 12:56:03 -0400 |
commit | 9f2486f3517c81c30a0ef66285cd48ab105442f4 (patch) | |
tree | c6d189ba912065a9ccea95c37d352c9ffcecccf4 /conf.d | |
parent | 4ee878dd42a3af74ad454505a8feb6e120e48d36 (diff) |
Fix some build and packaging issuesjellyfish_9.99.1jellyfish/9.99.19.99.1
Fixes:
- Add mkdir's to the custom target definitions to handle building
outside of the source tree. The custom targets should potentially
be replaced at some point with use of the app template's
PROJECT_TARGET macros, but that's more involved than is warranted
at the moment.
- Fix CMAKE_BUILD_TYPE -> BUILD_TYPE in config.cmake to match the
app template logic, and fix debug widget packaging.
Bug-AGL: SPEC-3300
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: I01b7c7b116b97a5f6b6330c767b5a6bdba9cdbce
Diffstat (limited to 'conf.d')
-rw-r--r-- | conf.d/cmake/config.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf.d/cmake/config.cmake b/conf.d/cmake/config.cmake index 9431c29..ec913a3 100644 --- a/conf.d/cmake/config.cmake +++ b/conf.d/cmake/config.cmake @@ -38,7 +38,7 @@ set(PROJECT_CMAKE_CONF_DIR "conf.d") # Compilation Mode (DEBUG, RELEASE) # ---------------------------------- -set(CMAKE_BUILD_TYPE "RELEASE") +set(BUILD_TYPE "RELEASE") #set(USE_EFENCE 1) # Kernel selection if needed. You can choose between a |