Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FormerLurker/ArcWelderLib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFormerLurker <hochgebe@gmail.com>2020-11-08 21:27:34 +0300
committerFormerLurker <hochgebe@gmail.com>2020-11-08 21:27:34 +0300
commit5eb4453aed430b3c5f336030c9a6eeb6e8ed18eb (patch)
treef23df828a2b018b66571d8404b933c5f2f940b12 /PyArcWelder
parent8bc8b43506c2601823cad652a33da84389381c99 (diff)
Code cleanup. Rename exe files for console and inverse processor app. Implement #15 and #16.
Diffstat (limited to 'PyArcWelder')
-rw-r--r--PyArcWelder/CMakeLists.txt3
-rw-r--r--PyArcWelder/sourcelist.cmake4
2 files changed, 6 insertions, 1 deletions
diff --git a/PyArcWelder/CMakeLists.txt b/PyArcWelder/CMakeLists.txt
index c17b561..593eaf2 100644
--- a/PyArcWelder/CMakeLists.txt
+++ b/PyArcWelder/CMakeLists.txt
@@ -43,7 +43,7 @@ if(WIN32)
endif()
# Link to ArcWelder, GcodeProcessorLib and the Python Libraries
-target_link_libraries(${PROJECT_NAME} ArcWelder GcodeProcessorLib)
+target_link_libraries(${PROJECT_NAME} ArcWelder GcodeProcessorLib ${PYTHON_LIBRARIES})
# On Windows, it is required to link to the Python libraries
if(WIN32 OR APPLE)
@@ -60,3 +60,4 @@ set(${PROJECT_NAME}_INCLUDE_DIRS ${PROJECT_SOURCE_DIR}/
${ArcWelder_INCLUDE_DIRS}
${GcodeProcessorLib_INCLUDE_DIRS}
CACHE INTERNAL "${PROJECT_NAME}: Include Directories" FORCE)
+ \ No newline at end of file
diff --git a/PyArcWelder/sourcelist.cmake b/PyArcWelder/sourcelist.cmake
index 5be1348..ff43231 100644
--- a/PyArcWelder/sourcelist.cmake
+++ b/PyArcWelder/sourcelist.cmake
@@ -1,6 +1,10 @@
set(PyArcWelderSources ${PyArcWelderSources}
py_arc_welder.cpp
+ py_arc_welder.h
py_arc_welder_extension.cpp
+ py_arc_welder_extension.h
py_logger.cpp
+ py_logger.h
python_helpers.cpp
+ python_helpers.h
) \ No newline at end of file