Skip to content

Commit

Permalink
today()
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph2 committed Jun 14, 2024
1 parent 7af0e85 commit 60f3e36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ include_directories(${ANTLR_pyA2LLexer_OUTPUT_DIR})
include_directories(${ANTLR_AMLParser_OUTPUT_DIR})

message("PROJ " ${PROJECT_SOURCE_DIR})
message("AML-Output: " ${ANTLR_AMLParser_OUTPUT_DIR})
message("AML-Output: " ${ANTLR_AMLParser_OUTPUTS} " cxx: " ${ANTLR_AMLParser_CXX_OUTPUTS})


# add generated grammar to demo binary target
Expand Down Expand Up @@ -153,5 +153,5 @@ ENDIF()
install(TARGETS preprocessor LIBRARY DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/pya2l)
install(TARGETS a2lparser_ext LIBRARY DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/pya2l)

# install(FILES ${ANTLR_AMLParser_OUTPUT_DIR} LIBRARY DESTINATION ${PROJECT_SOURCE_DIR}/libs)
install(FILES ${ANTLR_AMLParser_CXX_OUTPUTS} LIBRARY DESTINATION ${PROJECT_SOURCE_DIR}/pya2l/libs)
# install(TARGETS AMLParser LIBRARY DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/pya2l)
2 changes: 0 additions & 2 deletions build_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ def build_extension(debug: bool = False) -> None:
if not build_temp.exists():
build_temp.mkdir(parents=True)

cmake_args += ["-v"]

banner("Step #1: Configure")
print("aufruf:", ["cmake", str(TOP_DIR), *cmake_args])
subprocess.run(["cmake", str(TOP_DIR), *cmake_args], cwd=build_temp, check=True) # nosec
Expand Down

0 comments on commit 60f3e36

Please sign in to comment.